{"id":27646245,"url":"https://github.com/znsio/specmatic-github-workflows","last_synced_at":"2025-04-24T01:17:45.535Z","repository":{"id":278952715,"uuid":"936962959","full_name":"znsio/specmatic-github-workflows","owner":"znsio","description":"Contains workflows that are shared across specmatic repos","archived":false,"fork":false,"pushed_at":"2025-04-16T16:34:27.000Z","size":36,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-04-17T00:08:03.188Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/znsio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-22T02:41:09.000Z","updated_at":"2025-04-16T16:34:30.000Z","dependencies_parsed_at":"2025-03-19T05:20:27.015Z","dependency_job_id":"a6e3f946-c540-4949-b551-d9a79c7259aa","html_url":"https://github.com/znsio/specmatic-github-workflows","commit_stats":null,"previous_names":["znsio/specmatic-github-workflows"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/znsio%2Fspecmatic-github-workflows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/znsio%2Fspecmatic-github-workflows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/znsio%2Fspecmatic-github-workflows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/znsio%2Fspecmatic-github-workflows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/znsio","download_url":"https://codeload.github.com/znsio/specmatic-github-workflows/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250540891,"owners_count":21447428,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-24T01:17:44.880Z","updated_at":"2025-04-24T01:17:45.512Z","avatar_url":"https://github.com/znsio.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Github workflows for specmatic\n\n## Usage\n\n1. Enable dependabot and dependency graph in your project settings at `https://github.com/ORG/REPO/settings/security_analysis`\n2. Create the following workflow(s)\n\n   1. Basic build/test using java 17 and `./gradlew check assemble`\n\n   ```yaml\n   # .github/workflows/gradle.yml\n   name: Java Build with Gradle\n\n   on:\n     push:\n       branches: [\"main\"]\n     pull_request:\n       branches: [\"main\"]\n\n   jobs:\n     build:\n       runs-on: ubuntu-latest\n       permissions:\n         contents: write # This is required so that the dependency check can push dependency graph to the github repository\n       steps:\n         - uses: znsio/specmatic-github-workflows/action-build-gradle@main\n           with:\n             gradle-extra-args: \"-Pfoo=bar\" # pass any extra gradle args here\n   ```\n\n## Scripts in the bin dir\n\n1. For the fetch scripts, create a `~/.m2/settings.xml` file. Be sure to define `SPECMATIC_GITHUB_USER` and `SPECMATIC_GITHUB_TOKEN` in your shell.\n\n   ```xml\n   \u003csettings xmlns=\"http://maven.apache.org/SETTINGS/1.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n     xsi:schemaLocation=\"http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd\"\u003e\n       \u003cprofiles\u003e\n           \u003cprofile\u003e\n               \u003cactivation\u003e\n                 \u003cactiveByDefault\u003etrue\u003c/activeByDefault\u003e\n               \u003c/activation\u003e\n               \u003cid\u003edefault\u003c/id\u003e\n               \u003crepositories\u003e\n                   \u003crepository\u003e\n                       \u003cid\u003ecentral\u003c/id\u003e\n                       \u003curl\u003ehttps://repo.maven.apache.org/maven2\u003c/url\u003e\n                   \u003c/repository\u003e\n                   \u003crepository\u003e\n                       \u003cid\u003econfluent\u003c/id\u003e\n                       \u003curl\u003ehttps://packages.confluent.io/maven\u003c/url\u003e\n                   \u003c/repository\u003e\n                   \u003crepository\u003e\n                       \u003cid\u003especmaticPrivate\u003c/id\u003e\n                       \u003curl\u003ehttps://maven.pkg.github.com/znsio/specmatic-private-maven-repo\u003c/url\u003e\n                   \u003c/repository\u003e\n               \u003c/repositories\u003e\n           \u003c/profile\u003e\n       \u003c/profiles\u003e\n       \u003cservers\u003e\n           \u003cserver\u003e\n               \u003cid\u003especmaticPrivate\u003c/id\u003e\n               \u003cusername\u003e${env.SPECMATIC_GITHUB_USER}\u003c/username\u003e\n               \u003cpassword\u003e${env.SPECMATIC_GITHUB_TOKEN}\u003c/password\u003e\n           \u003c/server\u003e\n       \u003c/servers\u003e\n   \u003c/settings\u003e\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fznsio%2Fspecmatic-github-workflows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fznsio%2Fspecmatic-github-workflows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fznsio%2Fspecmatic-github-workflows/lists"}