We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0d1fc8 commit 0058662Copy full SHA for 0058662
1 file changed
.github/workflows/claude-pr-review-comprehensive.yml
@@ -19,11 +19,16 @@ jobs:
19
uses: actions/checkout@v5
20
with:
21
fetch-depth: 1
22
+ repository: ${{ github.event.pull_request.head.repo.full_name }} # Fix 1
23
+ ref: ${{ github.event.pull_request.head.ref }}
24
+
25
26
- name: PR Review with Progress Tracking
27
uses: anthropics/claude-code-action@v1
28
29
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
30
+ github_token: ${{ secrets.GITHUB_TOKEN }} # Fix 2: Bypass OIDC
31
+ allowed_non_write_users: '*' # Fix 3: Allow fork contributors
32
33
# Enable progress tracking
34
track_progress: true
0 commit comments