We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 545b4b9 + 2ca509d commit b3474e5Copy full SHA for b3474e5
1 file changed
.github/workflows/claude-code-review.yml
@@ -12,11 +12,12 @@ on:
12
13
jobs:
14
claude-review:
15
- # Only run for organization members, owners, and collaborators
+ # Run for: organization members OR claude/ prefix branches from same repo
16
if: |
17
github.event.pull_request.author_association == 'OWNER' ||
18
github.event.pull_request.author_association == 'MEMBER' ||
19
- github.event.pull_request.author_association == 'COLLABORATOR'
+ github.event.pull_request.author_association == 'COLLABORATOR' ||
20
+ (startsWith(github.event.pull_request.head.ref, 'claude/') && github.event.pull_request.head.repo.full_name == github.repository)
21
22
runs-on: ubuntu-latest
23
permissions:
0 commit comments