| github-token | Github token | no | ${{ github.token }} |
| git-message | Commit message to use | no | chore(release): {version} |
| git-user-name | The git user.name to use for the commit | no | Reliable Changelog Action |
| git-user-email | The git user.email to use for the commit | no | reliable.changelog.action@github.com |
| git-pull-method | The git pull method used when pulling all changes from remote | no | --ff-only |
| git-branch | The git branch to push changes to | no | ${{ github.ref }} |
| git-url | Git Url | no | github.com |
| tag-prefix | Prefix to use for the new git tag | no | v |
| current-version | The current version, or a relative path to a version file. Supported formats: "json", "toml", and "yaml". | no | ./package.json |
| version-path | Path to the version property seperated by "."s. (**Note:** The version should be in the form `X.X.X`) | no | version |
| strip-commit-prefix | Whether to strip the commit prefixes (fix:, feat:, etc) | no | true |
| major-release-commit-message | The commit message used to signify a new major release. | no | feat: major release |
| included-types | A string of comma separated commit types to include. | no | feat,fix,build |
| minor-commit-types | Comma seperated list of commit types that trigger minor version changes (0.X.0) | no | feat |
| minor-version-bump-interval | The number of minor version commits needed to bump the version past 1 in a single release. | no | 5 |
| patch-commit-types | Comma seperated list of commit types that trigger patch version changes (0.0.X) | no | fix,build,docs,ci,perf,refactor,revert,style,test |
| patch-version-bump-interval | The number of patch version commits needed to bump the version past 1 in a single release. | no | 5 |
| feat-section-label | The label for the feat commits section. | no | New Features |
| fix-section-label | The label for the fix commits section. | no | Bug Fixes |
| build-section-label | The label for the build commits section. | no | Build Pipeline Improvements |
| docs-section-label | The label for the docs commits section. | no | Documentation Changes |
| ci-section-label | The label for the ci commits section. | no | CI Changes |
| perf-section-label | The label for the perf commits section. | no | Performance Improvements |
| refactor-section-label | The label for the refactor commits section. | no | Refactoring |
| revert-section-label | The label for the revert commits section. | no | Reverted Changes |
| style-section-label | The label for the style commits section. | no | Styling Changes |
| test-section-label | The label for the test commits section. | no | Testing Changes |