| token | Github Public Access Token | no | ${{ github.token }} |
| commit_message | (Optional) Set the commit message for the version bump | no | CI: Bump version to {{version}} |
| path_to_package | (Optional) The path to the repositories package.json in the current Github Runner | no | ${{ github.workspace }} |
| tag | (Optional) If true (default false) a version tag is pushed | no | false |
| major | (Optional) Phrases to test head commit against. These phrases will extend the default major phrases. The phrases must be a single string delimited by a ','. | no | BREAKING CHANGE,major |
| minor | (Optional) Phrases to test head commit against. These phrases will extend the default minor phrases. The phrases must be a single string delimited by a ','. | no | feature,minor |
| patch | (Optional) Phrases to test head commit against. The phrases must be a single string delimited by a ','. Patch is the default version bump action for most commits. | no | "" |
| bump | (Optional) If you want to pass your own version number. Must be a valid semver string. Ex. 0.1.0. The prefixed "v" is optional | no | false |
| ref | (Optional) The target branch to push the version bump commit to. | no | ${{ github.ref }} |
| persist_phrase | (Optional) Persist default phrases with custom phrases. | no | false |