diff options
| -rw-r--r-- | .github/workflows/pr-check.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 3702088f8..3daad1237 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -2,11 +2,11 @@ name: "PR Changelog Verification" on: pull_request_target: - types: [ opened, edited ] + types: [ opened, edited, ready_for_review ] jobs: verify-changelog: - if: github.event.pull_request.state == 'open' && '511310721' == github.repository_id + if: github.event.pull_request.state == 'open' && '511310721' == github.repository_id && github.event.pull_request.draft == false runs-on: ubuntu-latest steps: |
