conjikidow/Bump Version Action
Automatically bumps version based on PR labels and creates a pull request and tag.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Activelast commit Jul 10, 2026
- License
- MIT
Pinned Snippet
uses: conjikidow/bump-version-action@f3a9763279155551196c80dab1c1891cbc51df9f # v4.0.2tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| github-token | The GitHub token for authentication. | no | ${{ github.token }} |
| version-of-bump-my-version | The version of `bump-my-version` to use. | no | latest |
| label-major | The label used to trigger a major version bump. | no | major |
| label-minor | The label used to trigger a minor version bump. | no | minor |
| label-patch | The label used to trigger a patch version bump. | no | patch |
| manual-bump-type | The bump type to use for manual workflow dispatch runs. | no | "" |
| branch-prefix | The prefix for the version bump branch name. | no | workflow |
| labels-to-add | Comma-separated string of labels to add to the PR for version bumping. | no | "" |
| update-major-minor-tags | Whether to create or update the major (`vX`) and minor (`vX.Y`) tags to point to the new release. | no | false |
| create-release | Whether to create a GitHub Release for the new tag. | no | false |
Outputs
| name | description |
|---|---|
| version-bumped | `true` if the version was bumped and a new tag was created; otherwise, `false`. |
| new-version | The new version number (e.g., `1.2.4`). This is empty when `version-bumped` is `false`. |