Add ready_for_review type to pull_request trigger types
This runs checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened by other workflows.
This commit is contained in:
parent
7eb261eac8
commit
2632b65a56
5 changed files with 13 additions and 1 deletions
3
.github/workflows/pr-checks.yml
vendored
3
.github/workflows/pr-checks.yml
vendored
|
|
@ -7,6 +7,9 @@ on:
|
|||
push:
|
||||
branches: [main, v1]
|
||||
pull_request:
|
||||
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
|
||||
# by other workflows.
|
||||
types: [opened, synchronize, reopened, ready_for_review]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue