tomerfi/Version Bumper Action
Automated semantic version bumps based on conventional commits
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| source | Source for the bump, any semver string or 'git' to fetch from tags. | no | git |
| bump | Target bump, 'major' | 'minor' | 'patch' | 'auto'. An 'auto' bump only works with a 'git' source. | no | auto |
| label | Development iteration build label. Defaults to '-dev'. | no | -dev |
| path | When source is 'git', set folder in the git. Defaults to running workspace. | no | ${{ github.workspace }} |
Outputs
| name | description |
|---|---|
| current | The original version. |
| bump | The bump performed. |
| next | The next version. |
| dev | The next development iteration version. |
| bump_object | The original object returned from the version-bumper tool. |
| major_part | The major part of the next version. |
| minor_part | The minor part of the next version. |
| patch_part | The patch part of the next version. |
| dev_patch_part | The patch part of the development iteration. |