{"id":45245938,"url":"https://github.com/kvendingoldo/git-flow-action","last_synced_at":"2026-02-20T22:20:09.014Z","repository":{"id":296167572,"uuid":"992464649","full_name":"kvendingoldo/git-flow-action","owner":"kvendingoldo","description":"🚀 Fully automated Git-flow management","archived":false,"fork":false,"pushed_at":"2026-02-20T21:21:20.000Z","size":120,"stargazers_count":7,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-20T21:21:26.192Z","etag":null,"topics":["automation","git-flow","hacktoberfest","hacktoberfest2025","release-automation","release-workflow","semantic-release","semantic-version","semver"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kvendingoldo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"kvendingoldo"}},"created_at":"2025-05-29T07:41:33.000Z","updated_at":"2026-02-20T21:21:24.000Z","dependencies_parsed_at":"2025-06-16T10:22:53.415Z","dependency_job_id":"85e69983-5bc4-43cf-955f-ba58a09faf14","html_url":"https://github.com/kvendingoldo/git-flow-action","commit_stats":null,"previous_names":["kvendingoldo/git-flow-action"],"tags_count":36,"template":false,"template_full_name":null,"purl":"pkg:github/kvendingoldo/git-flow-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvendingoldo%2Fgit-flow-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvendingoldo%2Fgit-flow-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvendingoldo%2Fgit-flow-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvendingoldo%2Fgit-flow-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kvendingoldo","download_url":"https://codeload.github.com/kvendingoldo/git-flow-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kvendingoldo%2Fgit-flow-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29667088,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T19:49:36.704Z","status":"ssl_error","status_checked_at":"2026-02-20T19:44:05.372Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["automation","git-flow","hacktoberfest","hacktoberfest2025","release-automation","release-workflow","semantic-release","semantic-version","semver"],"created_at":"2026-02-20T22:20:08.362Z","updated_at":"2026-02-20T22:20:08.982Z","avatar_url":"https://github.com/kvendingoldo.png","language":"Python","readme":"# Git Flow Action\n\nA GitHub Action that automates semantic versioning and release management following Git Flow principles. This action helps maintain a clean and consistent versioning strategy for your repositories.\n\n## Features\n\n- 🔄 **Automatic Version Bumping**: Automatically determines version bumps (major/minor/patch) based on commit messages\n- 🏷️ **Tag Management**: Creates and manages Git tags with customizable prefixes\n- 🌳 **Branch Management**: Supports Git Flow branching strategy with automatic release branch creation\n- 📝 **Changelog Updates**: Automatically updates CHANGELOG.md with new versions\n- 🚀 **GitHub Releases**: Creates GitHub releases for new versions\n- 🔍 **Configurable Keywords**: Customize commit message keywords for version bumping\n- 🔒 **Security**: Supports GitHub token authentication for secure operations\n\n## Usage\n\n### Basic Setup\n\n```yaml\nname: Git Flow\n\non:\n  push:\n    branches:\n      - 'main'\n      - 'release/**'\n\njobs:\n  version:\n    runs-on: ubuntu-24.04\n    permissions:\n      contents: write\n    steps:\n      - uses: actions/checkout@v3\n        with:\n          fetch-depth: 0\n\n      - name: Git Flow\n        id: set_version\n        uses: kvendingoldo/git-flow-action@v2.0.2\n        with:\n          enable_github_release: true\n          auto_release_branches: \"main\"\n          tag_prefix_release: \"v\"\n          github_token: \"${{ secrets.GITHUB_TOKEN }}\"\n\n      - name: Generated version\n        run: echo ${{ steps.set_version.outputs.version }}\n```\n\n### Custom Tag Prefixes\n\n```yaml\n      - name: Git Flow\n        uses: kvendingoldo/git-flow-action@v2.0.2\n        with:\n          init_version: \"1.0.0\"\n          tag_prefix_release: \"release-\"\n          tag_prefix_candidate: \"candidate-\"\n```\n\n### Configuration Options\n\n| Input | Description | Default | Required |\n|-------|-------------|---------|----------|\n| `init_version` | Initial version for new repositories | - | Yes |\n| `primary_branch` | Name of the primary branch | `main` | No |\n| `tag_prefix_release` | Prefix for release tags | `v` | No |\n| `tag_prefix_candidate` | Prefix for release candidate tags | `rc/` | No |\n| `enable_git_push` | Enable pushing to remote repository | `false` | No |\n| `enable_github_release` | Enable creating GitHub releases | `false` | No |\n| `auto_release_branches` | Comma-separated list of branches that trigger releases | - | No |\n| `log_level` | Logging level (debug/info/warning/error/critical) | `info` | No |\n\n### Version Bumping\n\nThe action automatically determines version bumps based on commit message keywords:\n\n- **Major Version** (`[BUMP-MAJOR]`, `bump-major`, `feat!`)\n- **Patch Version** (`[hotfix]`, `[fix]`, `hotfix:`, `fix:`)\n- **Minor Version** (default for all other commits)\n\n### Branch Strategy\n\n- **Primary Branch** (e.g., `main`): Creates release candidates and handles version bumps\n- **Release Branches** (`release/*`): Creates release versions and GitHub releases\n- **Other Branches**: Creates custom build versions with commit SHA\n\n## Outputs\n\nThe action provides the following outputs:\n\n- `version`: The new version tag (e.g., `v1.0.0`)\n- `safe_version`: A safe version string for use in filenames (e.g., `v1-0-0`)\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.\n\n\n## Acknowledgments\n\n- Inspired by Git Flow branching strategy\n- Built with Python and GitHub Actions\n- Uses semantic versioning (semver) for version management\n\n\n\u003ca href=\"https://star-history.com/#kvendingoldo/git-flow-action\u0026Date\"\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.star-history.com/svg?repos=kvendingoldo/git-flow-action\u0026type=Date\u0026theme=dark\" /\u003e\n    \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"https://api.star-history.com/svg?repos=kvendingoldo/git-flow-action\u0026type=Date\" /\u003e\n  \u003c/picture\u003e\n\u003c/a\u003e\n\n\u003c!-- markdownlint-enable no-inline-html --\u003e\n\n\u003ca id=\"licence\"\u003e\u003c/a\u003e\n## LICENSE\nThe kvendingoldo/git-flow-action project is distributed under the Apache 2.0 license. See [LICENSE](LICENSE).\n","funding_links":["https://github.com/sponsors/kvendingoldo"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkvendingoldo%2Fgit-flow-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkvendingoldo%2Fgit-flow-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkvendingoldo%2Fgit-flow-action/lists"}