actions-marketplace-validations/Conventional Versioning
GitHub Action that returns a semantic version based on Conventional Commits
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Maintainedlast commit Jan 6, 2026
- License
- MIT
Pinned Snippet
uses: actions-marketplace-validations/jveldboom_action-conventional-versioning@def73fb40d39ba3434bc1635fb5ffc6d87c0944e # no releases — HEAD as of 2026-07-13tags 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 |