steveyackey/SemVer Bump
A GitHub Action for bumping semantic version tags. Tags the commit with both the full semantic version, as well as updating the tag for the major version to point to the current commit. This action requires the actions/checkout action prior to running this.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| dry-run | Value: true/false. When true, it doesn't tag the commit, it only outputs what would've been tagged. | no | false |
| initial-tag | Used to override the initial tag to bump up from | no | — |
| commit-message | Used to override the commit message. Generally used for testing the action. | no | — |
Outputs
| name | description |
|---|---|
| current-tag | The latest tag prior to updating found by 'git tag -l' |
| resulting-semver-tag | The full resulting tag in semver format (v1.0.0) |
| resulting-major-tag | The resulting full major version (v1) |