| allowed-commit-types | A comma-separated list of commit types that are allowed. | no | — |
| version-json-file | The path to one or more JSON file(s) that contains the version information. | no | — |
| version-manager-module | The path to a commonjs module that exports a function to manage the version. | no | — |
| json-tab-width | The number of spaces to use for indentation in the JSON file. | no | 4 |
| create-tag | Whether to create a tag for the new version. | no | true |
| create-commit | Whether to create a commit for the new version. | no | true |
| create-tag-prefix | The prefix to use for the tag. | no | v |
| commit-message-format | The format to use for the commit message. | no | chore(release): v%s [skip ci] |
| git-path | The path to the git executable. | no | /usr/bin/git |
| git-user-name | The name to use for the git user. | no | Conventional Release Action |
| git-user-email | The email to use for the git user. | no | conventional-release@onesoftnet.eu.org |
| git-gpg-key | The GPG key (ASCII) to use for signing the commit. | no | — |
| git-sign-off | Whether to sign off the commit. | no | false |
| git-push | Whether to push the commit and tag. | no | true |
| git-push-remote | The remote to push the commit and tag to. | no | origin |
| git-push-remote-url | The URL of the remote to push the commit and tag to. | no | — |
| git-push-branch | The branch to push the commit and tag to. | no | — |
| metadata-file | The path to the file that contains the metadata. | no | .github/cra-metadata.json |
| changelog-file | The path to the file where the generated changelog will be written. | no | ChangeLog |
| changelog-format | The format to use for the changelog. Can be 'markdown' or 'plain'. | no | plain |
| add-release-notes | Whether to add release notes to the changelog. | no | true |
| skip-commits-pattern | A regex pattern for the commits which should not be listed in the release notes | no | ^release(\(.+?\))?\!?: |
| skip-commits-pattern-flags | Flags for the regex pattern in skip-commits-pattern | no | gi |