stefanvandyck/Git Version
Bash script to perform basic automated sematic versioning based on git tags
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| component | Name of an option sub-component, used as prefix for the git tags | no | "" |
| paths | Paths that contain changes to consider for git messages | no | "" |
| major_bump_message | String to look for in commit messages to trigger a major bump | no | "" |
| minor_bump_message | String to look for in commit messages to trigger a minor bump | no | "" |
| ignore_message | String to look for in commit messages to ignore the commit for versioning | no | "" |
| poc_release_branch_prefix | Prefix for the branch name to use for PoC releases | no | "" |
Outputs
| name | description |
|---|---|
| number_of_changes_since_last_tag | The number of commits since the last tag |
| previous_version | The previous version number |
| new_version | The new version number |