Skip to content

Commit b3474e5

Browse files
authored
Merge pull request #73 from chainapsis/claude/fix-api-billing-mode-MFpG8
Claude/fix api billing mode m fp g8
2 parents 545b4b9 + 2ca509d commit b3474e5

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/claude-code-review.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ on:
1212

1313
jobs:
1414
claude-review:
15-
# Only run for organization members, owners, and collaborators
15+
# Run for: organization members OR claude/ prefix branches from same repo
1616
if: |
1717
github.event.pull_request.author_association == 'OWNER' ||
1818
github.event.pull_request.author_association == 'MEMBER' ||
19-
github.event.pull_request.author_association == 'COLLABORATOR'
19+
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)
2021
2122
runs-on: ubuntu-latest
2223
permissions:

0 commit comments

Comments
 (0)