Update action.yml for README

This commit is contained in:
Phil Jay
2024-04-23 17:13:22 +10:00
committed by GitHub
parent a449b75848
commit 352a9961c8

View File

@@ -11,11 +11,11 @@ inputs:
description: | description: |
Versioning scheme - semver, calver or conventional_commits (defaults to semver). Versioning scheme - semver, calver or conventional_commits (defaults to semver).
`conventional_commits` Will parse the last commit message to determine the increment type. `conventional_commits` Will parse the last commit message (e.g. the merge commit) to
Supports the following increment types: determine the increment type, and supports the following increment types by keyword:
- patch (build, chore, ci, docs, fix, perf, refactor, revert, style, test) - patch (build, chore, ci, docs, fix, perf, refactor, revert, style, test)
- minor (feat) - minor (feat)
- Major (any of the above types with an '!' or 'BREAKING CHANGE:' in commit body) - major (any of the above keywords followed by a '!' character, or 'BREAKING CHANGE:' in commit body)
required: false required: false
default: 'semver' default: 'semver'
pep440: pep440:
@@ -26,6 +26,9 @@ inputs:
description: | description: |
Field to increment - major, minor, or, patch (defaults to patch) Field to increment - major, minor, or, patch (defaults to patch)
If using the `conventional_commits` scheme, this is the default increment if the parsing of the merge commit fails to
find conventional commits information
Not applicable to `calver` scheme Not applicable to `calver` scheme
required: false required: false
default: 'patch' default: 'patch'