Skip to content

chore: distribute managed files#28

Open
p6m7g8-automation wants to merge 1 commit intomainfrom
github-actions/file-distribution
Open

chore: distribute managed files#28
p6m7g8-automation wants to merge 1 commit intomainfrom
github-actions/file-distribution

Conversation

@p6m7g8-automation
Copy link
Copy Markdown

Distributes managed workflow files from p6m7g8-actions/p6-gh-distributor.

Comment on lines +22 to +25
- name: Run claude review
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false
continue-on-error: true
uses: p6m7g8-actions/claude@main
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 [P2] .github/workflows/claude-review.yml:22 fork PRs still invoke claude without secrets

Current code:

      - name: Run claude review
        if: github.event_name == 'pull_request' && github.event.pull_request.draft == false
        continue-on-error: true
        uses: p6m7g8-actions/claude@main

Problem: Fork-origin pull requests reach this step but cannot access ANTHROPIC_API_KEY, so claude review always fails for external contributors.

Fix:

Suggested change
- name: Run claude review
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false
continue-on-error: true
uses: p6m7g8-actions/claude@main
- name: Run claude review
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false && github.event.pull_request.head.repo.fork == false
continue-on-error: true
uses: p6m7g8-actions/claude@main

@github-actions github-actions bot enabled auto-merge March 29, 2026 14:24
Signed-off-by: github-actions <github-actions@github.com>
@github-actions
Copy link
Copy Markdown

Codex Autonomous Review:

  • Overall: patch is correct
  • Findings (total): 0

No additional issues found beyond the existing comment; workflows should run as intended.

Tip: comment with "/codex address comments" to attempt automated fixes for unresolved review threads.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant