aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThatGravyBoat <thatgravyboat@gmail.com>2024-10-18 13:53:05 -0230
committerGitHub <noreply@github.com>2024-10-19 03:23:05 +1100
commit1cfd04c38b5236cdfb135cf0184c1bc31be09824 (patch)
tree83f46ca025bbe8bd49a6ecf452cdf44ff88b687f
parent83efbb3341edc3266bc2a4b89b3570c1a303ccba (diff)
downloadSkyHanni-1cfd04c38b5236cdfb135cf0184c1bc31be09824.tar.gz
SkyHanni-1cfd04c38b5236cdfb135cf0184c1bc31be09824.tar.bz2
SkyHanni-1cfd04c38b5236cdfb135cf0184c1bc31be09824.zip
Fix draft PRs getting PR checks being on them while they are in progress (#2760)
-rw-r--r--.github/workflows/pr-check.yml4
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: