| token | GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT) | — | ${{ github.token }} |
| path | Relative path under $GITHUB_WORKSPACE to the repository. Defaults to $GITHUB_WORKSPACE.
| — | — |
| add-paths | A comma or newline-separated list of file paths to commit. Paths should follow git's pathspec syntax. Defaults to adding all new and modified files.
| — | — |
| commit-message | The message to use when committing changes. | — | [create-pull-request] automated change |
| committer | The committer name and email address in the format `Display Name <email@address.com>`. Defaults to the GitHub Actions bot user.
| — | GitHub <noreply@github.com> |
| author | The author name and email address in the format `Display Name <email@address.com>`. Defaults to the user who triggered the workflow run.
| — | ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> |
| signoff | Add `Signed-off-by` line by the committer at the end of the commit log message. | — | false |
| branch | The pull request branch name. | — | create-pull-request/patch |
| delete-branch | Delete the `branch` when closing pull requests, and when undeleted after merging. Recommend `true`.
| — | false |
| branch-suffix | The branch suffix type when using the alternative branching strategy. | — | — |
| base | The pull request base branch. Defaults to the branch checked out in the workflow.
| — | — |
| push-to-fork | A fork of the checked out parent repository to which the pull request branch will be pushed. e.g. `owner/repo-fork`. The pull request will be created to merge the fork's branch into the parent's base.
| — | — |
| title | The title of the pull request. | — | Changes by create-pull-request action |
| body | The body of the pull request. | — | Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action |
| body-path | The path to a file containing the pull request body. Takes precedence over `body`. | — | — |
| labels | A comma or newline separated list of labels. | — | — |
| assignees | A comma or newline separated list of assignees (GitHub usernames). | — | — |
| reviewers | A comma or newline separated list of reviewers (GitHub usernames) to request a review from. | — | — |
| team-reviewers | A comma or newline separated list of GitHub teams to request a review from. Note that a `repo` scoped Personal Access Token (PAT) may be required.
| — | — |
| milestone | The number of the milestone to associate the pull request with. | — | — |
| draft | Create a draft pull request. It is not possible to change draft status after creation except through the web interface | — | false |