nekofar/Git Flow

This action automates the creation of pull requests for branches that match predefined naming conventions. It supports custom prefixes for feature, bugfix, release, and hotfix branches. When a branch is pushed that matches one of these prefixes, the action automatically generates a pull request with a formatted title and default body message, targeting either the master or develop branch as appropriate.

View on GitHub

Trust Signals

Scorecard Score
not yet scored
Maintenance Recency
Stale
License
None
namedescriptionrequireddefault
github-tokenThe GitHub token used for authentication. Typically, this is the built-in GITHUB_TOKEN secret.yes${{ github.token }}
master-branchThe branch to target for release and hotfix pull requests, usually the master branch.yesmaster
develop-branchThe branch to target for feature and bugfix pull requests, usually the develop branch.yesdevelop
feature-prefixThe prefix for feature branches, e.g., "feature/".nofeature/
bugfix-prefixThe prefix for bugfix branches, e.g., "bugfix/".nobugfix/
release-prefixThe prefix for release branches, e.g., "release/".norelease/
hotfix-prefixThe prefix for hotfix branches, e.g., "hotfix/".nohotfix/

no outputs