Преглед изворни кода

ci: make review only fire on non draft pr creation

Aiden Cline пре 2 месеци
родитељ
комит
3181c68cbb
1 измењених фајлова са 3 додато и 2 уклоњено
  1. 3 2
      .github/workflows/review.yml

+ 3 - 2
.github/workflows/review.yml

@@ -9,10 +9,11 @@ on:
 jobs:
   check-guidelines:
     if: |
-      github.event_name == 'pull_request_target' ||
+      (github.event_name == 'pull_request_target' &&
+       github.event.pull_request.draft == false) ||
       (github.event_name == 'issue_comment' &&
        github.event.issue.pull_request &&
-      startsWith(github.event.comment.body, '/review'))
+       startsWith(github.event.comment.body, '/review'))
     runs-on: ubuntu-latest
     permissions:
       contents: read