| config-name | If your workflow requires multiple release-drafter configs it be helpful to override the config-name.
The config should still be located inside `.github` as that's where we are looking for config files.
| no | release-drafter.yml |
| token | Access token used to make requests against the GitHub API. Defaults to github.token.
| — | ${{ github.token }} |
| name | The name that will be used in the GitHub release that's created or updated.
This will override any `name-template` specified in your `release-drafter.yml` if defined.
| no | — |
| tag | The tag name to be associated with the GitHub release that's created or updated.
This will override any `tag-template` specified in your `release-drafter.yml` if defined.
| no | — |
| version | The version to be associated with the GitHub release that's created or updated.
This will override any version calculated by the release-drafter.
| no | — |
| publish | A boolean indicating whether the release being created or updated should be immediately published.
| no | "" |
| latest | A boolean indicating whether the release being created or updated should be marked as latest.
| no | "" |
| prerelease | Whether to draft a prerelease, with changes since another prerelease (if applicable). Default `false`.
| no | "" |
| prerelease-identifier | A string indicating an identifier (alpha, beta, rc, etc), to increment the prerelease version. This automatically enables `prerelease` when both values come from the same config location; explicit action inputs still take precedence.
| no | "" |
| include-pre-releases | When looking for the last published release to scan changes up-to, include pre-releases. Has no effect if using `prerelease: true` (already enabled). Default `false`.
| no | "" |
| commitish | The release target, i.e. branch or commit it should point to.
Default: the ref that release-drafter runs for, e.g. `refs/heads/master` if configured to run on pushes to `master`.
| no | "" |
| header | A string that would be added before the template body.
| no | "" |
| footer | A string that would be added after the template body.
| no | "" |
| dry-run | A boolean indicating whether to run without performing any write operations.
When enabled, the action logs what it would have done instead of creating or updating releases.
| no | "" |
| filter-by-range | Filter releases that satisfies this semver range. Evaluates the tag name againts node's semver.satisfies().
| no | "" |