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 5fd2b6a commit db40c5cCopy full SHA for db40c5c
.github/workflows/claude-code-review.yml
@@ -14,11 +14,14 @@ on:
14
15
jobs:
16
claude-review:
17
- # Optional: Skip review for specific conditions
+ # Only run for code owners and skip specific conditions
18
if: |
19
!contains(github.event.pull_request.title, '[skip-review]') &&
20
!contains(github.event.pull_request.title, '[WIP]') &&
21
- github.event.pull_request.draft == false
+ github.event.pull_request.draft == false &&
22
+ (github.event.pull_request.author_association == 'OWNER' ||
23
+ github.event.pull_request.author_association == 'MEMBER' ||
24
+ github.event.pull_request.author_association == 'COLLABORATOR')
25
26
runs-on: ubuntu-latest
27
permissions:
0 commit comments