We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1333f94 commit dc1ed5dCopy full SHA for dc1ed5d
.github/workflows/claude-code-review.yml
@@ -12,11 +12,15 @@ on:
12
13
jobs:
14
claude-review:
15
+ # Skip draft PRs
16
+ if: github.event.pull_request.draft == false
17
+
18
# Optional: Filter by PR author
19
# if: |
- # github.event.pull_request.user.login == 'external-contributor' ||
20
+ # github.event.pull_request.draft == false &&
21
+ # (github.event.pull_request.user.login == 'external-contributor' ||
22
# github.event.pull_request.user.login == 'new-developer' ||
- # github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR'
23
+ # github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR')
24
25
runs-on: ubuntu-latest
26
permissions:
0 commit comments