Add support for committing with no-verify

This commit is contained in:
Becky Fulton 2023-04-18 12:12:29 +01:00
parent 2827897dcc
commit a9029b0f6a
5 changed files with 15 additions and 3 deletions

View file

@ -72,6 +72,7 @@ All inputs are **optional**. If not set, sensible defaults will be used.
| `team-reviewers` | A comma or newline-separated list of GitHub teams to request a review from. Note that a `repo` scoped [PAT](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token), or equivalent [GitHub App permissions](docs/concepts-guidelines.md#authenticating-with-github-app-generated-tokens), are required. | |
| `milestone` | The number of the milestone to associate this pull request with. | |
| `draft` | Create a [draft pull request](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests#draft-pull-requests). It is not possible to change draft status after creation except through the web interface. | `false` |
| `skip-hooks` | Skip hooks when committing changes. | `false` |
For self-hosted runners behind a corporate proxy set the `https_proxy` environment variable.
```yml
@ -257,6 +258,7 @@ jobs:
qa-team
milestone: 1
draft: false
skip-hooks: false
```
An example based on the above reference configuration creates pull requests that look like this: