bbonkr/next-version-proposal-action
Github action which recommends a name for the next version based on your git tag and pull request labels
View on GitHubTrust Signals
- Scorecard Score
- Scorecard 0–2scored Jul 6, 2026
- Maintenance Recency
- Stalelast commit Oct 4, 2024
- License
- MIT
Pinned Snippet
uses: bbonkr/next-version-proposal-action@efb7ef349c11a3a589288d23d27ab19de3fd02b6 # v1.3.0tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| github_token | GitHub Personal Access Token. It requires REPO scope. | no | ${{ github.token }} |
| pr | Pull request number. Input just number. e.g.) 100 | no | ${{ github.event.pull_request.number }} |
| owner | Name of repository owner, For test. You does not need this input. | no | "" |
| repo | Repository name; For test. You does not need this input. | no | "" |
| major_labels | A comma-separated list of label names to increment the major version by. | no | major,next |
| minor_labels | A comma-separated list of label names to increment the minor version by. | no | enhancement,feature |
| next_version_prefix | Next version prefix | no | "" |
| logging | Shows logging message (Please set true if you want to show logging messages) | no | "" |
Outputs
| name | description |
|---|---|
| latest_version | Latest version of git tag |
| next_version | Recommended next version name |
| next_version_major | Major version of Recommended next version |
| next_version_minor | Minor version of Recommended next version |
| next_version_patch | Patch version of Recommended next version |