Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ jobs:
- uses: anthropics/claude-code-action@v1
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
# On PR-open the action auto-picks "agent" mode, which runs the prompt
# but posts nothing. Forcing tag mode gives Claude the GitHub
# review/comment tools + a tracking comment so the review is posted.
# Comment events (@claude) are already tag mode, so leave them as-is.
track_progress: ${{ github.event_name == 'pull_request' }}
# Empty on comment events (interactive @claude mode); a review
# instruction when a PR is opened against develop.
prompt: ${{ github.event_name == 'pull_request' && 'Review this pull request for correctness bugs, security issues, and regressions. Post findings as inline review comments plus a short summary.' || '' }}
Loading