{"id":19325285,"url":"https://github.com/duplocloud/ghactions-start-gitflow-release","last_synced_at":"2025-10-27T09:07:05.742Z","repository":{"id":43021708,"uuid":"465046026","full_name":"duplocloud/ghactions-start-gitflow-release","owner":"duplocloud","description":"Starts a gitflow release","archived":false,"fork":false,"pushed_at":"2025-02-12T03:18:43.000Z","size":36,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"develop","last_synced_at":"2025-02-12T03:31:16.307Z","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}},"created_at":"2022-03-01T20:27:53.000Z","updated_at":"2025-02-12T02:44:13.000Z","dependencies_parsed_at":"2025-01-06T06:42:04.709Z","dependency_job_id":"eab87497-3d86-46ea-95ee-0061429128ff","html_url":"https://github.com/duplocloud/ghactions-start-gitflow-release","commit_stats":{"total_commits":21,"total_committers":2,"mean_commits":10.5,"dds":0.04761904761904767,"last_synced_commit":"1a1d4dc593df4eb88452194e7c2573ec22c76cdf"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duplocloud%2Fghactions-start-gitflow-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duplocloud%2Fghactions-start-gitflow-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duplocloud%2Fghactions-start-gitflow-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/duplocloud%2Fghactions-start-gitflow-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/duplocloud","download_url":"https://codeload.github.com/duplocloud/ghactions-start-gitflow-release/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240427326,"owners_count":19799471,"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":["duplocloud","gitflow","gitflow-release","sdlc"],"created_at":"2024-11-10T02:09:34.248Z","updated_at":"2025-10-27T09:07:05.657Z","avatar_url":"https://github.com/duplocloud.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Github Action to start a gitflow release\n\nThis action starts a gitflow release, and opens a pull request for the release.\n\n# Usage\n\n## Example\n\nHere is an example of what to put in your `.github/workflows/start-release.yml` file to use this workflow.\n\n```yaml\nname: Start Release\non:\n  workflow_dispatch:\n    inputs:\n      version:\n        description: 'Next version number'\n        required: true\nenv:\n  git_user: some-bot                # CHANGE ME!\n  git_email: some-bot@example.com   # CHANGE ME!\njobs:\n  start-release:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v2\n        with:\n          ref: develop                # Always release from develop\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      # START 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: Start gitflow release\n        uses: duplocloud/ghactions-start-gitflow-release@master\n        with:\n          github_token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}\n          version: ${{ github.event.inputs.version }}\n          precommit_run: |\n            echo \"v${{ github.event.inputs.version }}\" \u003eVERSION\n```\n\n## Inputs\n\n| Name | Description | Required | Default |\n|------|-------------|----------|---------|\n| version | The release version (without any leading prefix) | true | unset |\n| tag_prefix | The tag prefix (defaults to \"v\") | true | `\"v\"` |\n| github_token | Github token to use for pushing and creating the PR | true | unset |\n| precommit_run | Shell commands to run prior to making release commit.  If no commands are given, no commit will be made. | false | unset |\n| commit_message | Commit message to use for the release commit.  If no precommit_run is given, no commit will be made. | false | `\"[release] version bump\"` |\n| create_pr | Whether or not to create a pull request. | false | true |\n| target_ref | pull request base (defaults to master).  Only used if creating a PR. | false | `\"master\"` |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| release_tag | release git tag (with version prefix) |\n| release_branch | release git branch |\n| pull_request_id | pull request ID |\n| pull_request_url | pull request URL |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduplocloud%2Fghactions-start-gitflow-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fduplocloud%2Fghactions-start-gitflow-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduplocloud%2Fghactions-start-gitflow-release/lists"}