jveldboom/Conventional Versioning
GitHub Action that returns a semantic version based on Conventional Commits
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Activelast commit Mar 13, 2026
- License
- MIT
Pinned Snippet
uses: jveldboom/action-conventional-versioning@e273c20addd8571e149fd6022c9a31404426040d # v1.4.0tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| github-token | GitHub token | — | ${{ github.token }} |
| default-bump | Default version bump (major, minor, or patch) | — | patch |
| ignore-prereleases | Ignore prereleases when calculating the next version (true or false) | — | false |
| ignore-drafts | Ignore draft releases when calculating the next version (true or false) | — | false |
| mode | Sets the version mode to run - future use-case | — | default |
Outputs
| name | description |
|---|---|
| version | Semantic version without prefix |
| version-with-prefix | Semantic version with prefix |
| previous-version | Previous version used for the bump without prefix |
| previous-version-with-prefix | Previous version used for the bump with prefix |
| major | Major version number |
| major-with-prefix | Major version number with prefix |
| minor | Minor version number |
| patch | Patch version number |