{"id":23722790,"url":"https://github.com/fulminazzo/java-automatic-release","last_synced_at":"2026-02-09T19:37:37.402Z","repository":{"id":213980766,"uuid":"735409204","full_name":"fulminazzo/java-automatic-release","owner":"fulminazzo","description":"Automatically build your Java Project and release all the related JARs.","archived":false,"fork":false,"pushed_at":"2025-06-21T20:51:39.000Z","size":17,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-21T21:31:59.261Z","etag":null,"topics":["github-actions","gradle","java","maven","publishing"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fulminazzo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-12-24T20:23:54.000Z","updated_at":"2025-06-21T20:50:44.000Z","dependencies_parsed_at":"2023-12-24T21:20:26.645Z","dependency_job_id":"4ed41e44-f3f5-4b13-a050-e029305a23ba","html_url":"https://github.com/fulminazzo/java-automatic-release","commit_stats":null,"previous_names":["fulminazzo/java-automatic-release","fulminazzo/automatic-release"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/fulminazzo/java-automatic-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulminazzo%2Fjava-automatic-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulminazzo%2Fjava-automatic-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulminazzo%2Fjava-automatic-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulminazzo%2Fjava-automatic-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fulminazzo","download_url":"https://codeload.github.com/fulminazzo/java-automatic-release/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulminazzo%2Fjava-automatic-release/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267243629,"owners_count":24058949,"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","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["github-actions","gradle","java","maven","publishing"],"created_at":"2024-12-30T23:56:49.573Z","updated_at":"2026-02-09T19:37:37.324Z","avatar_url":"https://github.com/fulminazzo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Automatic Release\nAutomatic Release is a _composite_ GitHub Action that joins together multiple actions to automate your project releases.\n\n**Starting from version v3, it is now REQUIRED to prepend `!release` before the commit message for any commit that you want released.**\n\nIt does so by:\n- setting up Java to the specified version in `with.java-version`;\n- find out what build tool you are using:\n  - if you are using **Maven**, it loads the project variables (_version_ and _modules_) from your `pom.xml` file and builds it using `mvn package`;\n  - if you are using **Gradle**, it loads the project variables from both your `build.gradle` and `settings.gradle` files and builds it using `./gradlew build`;\n  - if you are using **none of the above**, the action fails (**Apache Ant is NOT supported**).\n- finally,\n  it uses the previous loaded variables to create a new release with tag\n  `$VERSION` and uses your `$COMMIT_MESSAGE` as the description.\nEvery file found during the compilation process will be published.\n\nTo start using it, create a new workflow and insert the following:\n```yaml\n# Name of the action\nname: Automatic Release\n\n# Event to run on\non:\n  # Will run on every push in the \"main\" or \"master\" branch\n  push:\n    branches:\n      - main\n      - master\n\npermissions:\n  contents: write\n\n# Jobs that will execute\njobs:\n  release:\n    name: Setup Environment, Build JAR and Release Project\n    runs-on: ubuntu-latest\n    if: \"startsWith(github.event.head_commit.message, '!release')\"\n    steps:\n      - name: Automatic Release\n        uses: Fulminazzo/java-automatic-release@v4\n        with:\n          java-version: 8\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          REPOSITORY_NAME: ${{ github.event.repository.name }}\n          # Message specified in the commit\n          COMMIT_MESSAGE: ${{ github.event.head_commit.message }}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffulminazzo%2Fjava-automatic-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffulminazzo%2Fjava-automatic-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffulminazzo%2Fjava-automatic-release/lists"}