From 1cfd04c38b5236cdfb135cf0184c1bc31be09824 Mon Sep 17 00:00:00 2001 From: ThatGravyBoat Date: Fri, 18 Oct 2024 13:53:05 -0230 Subject: Fix draft PRs getting PR checks being on them while they are in progress (#2760) --- .github/workflows/pr-check.yml | 4 ++-- 1 file 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: -- cgit