{"id":19325284,"url":"https://github.com/duplocloud/ghactions-finish-gitflow-release","last_synced_at":"2026-02-07T15:31:50.864Z","repository":{"id":38188255,"uuid":"465058342","full_name":"duplocloud/ghactions-finish-gitflow-release","owner":"duplocloud","description":"Finishes a gitflow release","archived":false,"fork":false,"pushed_at":"2025-02-25T22:46:02.000Z","size":55,"stargazers_count":1,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-10-21T22:34:03.568Z","etag":null,"topics":["duplocloud","gitflow","gitflow-release","sdlc"],"latest_commit_sha":null,"homepage":"https://duplocloud.com","language":null,"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/duplocloud.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":"2022-03-01T21:13:30.000Z","updated_at":"2025-02-25T22:44:23.000Z","dependencies_parsed_at":"2025-02-12T03:26:51.608Z","dependency_job_id":"00662338-01a0-4688-83ff-b0d358346fcd","html_url":"https://github.com/duplocloud/ghactions-finish-gitflow-release","commit_stats":{"total_commits":23,"total_committers":2,"mean_commits":11.5,"dds":0.04347826086956519,"last_synced_commit":"d69607f47c6a822fc8f95a0af3ffd2fc04ce9b14"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/duplocloud/ghactions-finish-gitflow-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duplocloud%2Fghactions-finish-gitflow-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duplocloud%2Fghactions-finish-gitflow-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duplocloud%2Fghactions-finish-gitflow-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duplocloud%2Fghactions-finish-gitflow-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/duplocloud","download_url":"https://codeload.github.com/duplocloud/ghactions-finish-gitflow-release/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duplocloud%2Fghactions-finish-gitflow-release/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29198178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T14:35:27.868Z","status":"ssl_error","status_checked_at":"2026-02-07T14:25:51.081Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["duplocloud","gitflow","gitflow-release","sdlc"],"created_at":"2024-11-10T02:09:34.156Z","updated_at":"2026-02-07T15:31:50.846Z","avatar_url":"https://github.com/duplocloud.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Github Action to finish a gitflow release\n\nThis action fnishes a gitflow release.\n\n# Usage\n\n## Example\n\nHere is an example of what to put in your `.github/workflows/finish-release.yml` file to use this workflow.\n\n```yaml\nname: Finish Release\non:\n  pull_request:\n    types:\n      - closed\n    branches:\n      - master\nenv:\n  git_user: some-bot                # CHANGE ME!\n  git_email: some-bot@example.com   # CHANGE ME!\njobs:\n  finish-release:\n    if: github.event.pull_request.merged == true \u0026\u0026 (startsWith(github.head_ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/'))\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          ref: master                 # Always finish releases from the \"merged to\" master\n          fetch-depth: 0\n          persist-credentials: false  # Needed so we can push with different credentials.\n                                      # NOTE: Pushing with different credentials allows admins to push protected branches.\n                                      # NOTE: Pushing with different credentials allow workflows to trigger from the push.\n\n      # FINISH THE RELEASE\n      - name: Initialize mandatory git config\n        run: |\n          git config --global user.name $git_user \u0026\u0026\n          git config --global user.email $git_email\n      - name: Finish gitflow release\n        id: finish-release\n        uses: duplocloud/ghactions-finish-gitflow-release@master\n        with:\n          github_token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}\n```\n\n## Inputs\n\n| Name | Description | Required | Default |\n|------|-------------|----------|---------|\n| github_token | Github token to use for pushing the tag and deleting the release branch | true | unset |\n| target_ref | release target ref (pull request base ref - defaults to `${{ github.base_ref }}`, which is usually master) | false | `\"\"` |\n| source_ref | release source ref (pull request head ref - defaults to `${{ github.head_ref }}`' | false | `\"\"` |\n| develop_ref | develop ref (defaults to develop) | false | `\"develop\"` |\n| tag_prefix | The tag prefix (defaults to \"v\") | false | `\"v\"` |\n| delete_branch | Whether or not to delete the release branch. Set this to `false` if your source ref has previously been deleted. | false | `true` |\n| validate_merge | Validates that the `source_ref` was already merged into the `target_ref`.  Set this to `false` if you merge a squashed commit or if your source ref has previously been deleted. | false | `true` |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| release_tag | release git tag (with version prefix) |\n| release_branch | release git branch |\n| release_commit | release git commit |\n| source_ref | release source ref (pull request head) |\n| target_ref | release target ref (pull request base) |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduplocloud%2Fghactions-finish-gitflow-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fduplocloud%2Fghactions-finish-gitflow-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduplocloud%2Fghactions-finish-gitflow-release/lists"}