We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3c9003 commit 3181c68Copy full SHA for 3181c68
.github/workflows/review.yml
@@ -9,10 +9,11 @@ on:
9
jobs:
10
check-guidelines:
11
if: |
12
- github.event_name == 'pull_request_target' ||
+ (github.event_name == 'pull_request_target' &&
13
+ github.event.pull_request.draft == false) ||
14
(github.event_name == 'issue_comment' &&
15
github.event.issue.pull_request &&
- startsWith(github.event.comment.body, '/review'))
16
+ startsWith(github.event.comment.body, '/review'))
17
runs-on: ubuntu-latest
18
permissions:
19
contents: read
0 commit comments