Skip to content
Draft
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
70 changes: 70 additions & 0 deletions .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Claude Code Review

on:
workflow_dispatch:
inputs:
pr_number:
description: Pull request number to review when running manually
required: true
type: string
pull_request:
types: [opened, synchronize, ready_for_review, reopened]

concurrency:
group: claude-review-${{github.event.pull_request.number || github.run_id}}
cancel-in-progress: true

permissions:
contents: read
pull-requests: write

jobs:
review:
name: Review PR
# Skip fork PRs because org secrets and internal runner access are unavailable.
if: github.event_name == 'workflow_dispatch' || github.event.pull_request.head.repo.full_name == github.repository
runs-on: claude-code-reviewer
steps:
- name: Harden the runner (Block unauthorized outbound calls)
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: block
allowed-endpoints: >
api.github.com:443
bun.sh:443
github.com:443
objects.githubusercontent.com:443
registry.npmjs.org:443
release-assets.githubusercontent.com:443
${{ vars.LLM_GATEWAY_HOSTNAME }}:443

- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 1

- name: Run Claude Code Review
uses: anthropics/claude-code-action@1b8ee3b94104046d71fde52ec3557651ad8c0d71 # v1.0.29
env:
ANTHROPIC_BASE_URL: https://${{ vars.LLM_GATEWAY_HOSTNAME }}
TARGET_PR: ${{ inputs.pr_number || github.event.pull_request.number }}
with:
anthropic_api_key: ${{ secrets.LLM_GATEWAY_API_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}
track_progress: false
prompt: |
Review pull request #${{ env.TARGET_PR }} in this repository for correctness, regressions,
security, and maintainability.

Use gh to gather context:
- gh pr view ${{ env.TARGET_PR }}
- gh pr diff ${{ env.TARGET_PR }}

Post comments only for actionable findings:
- Inline comments for specific issues
- A single top-level summary comment with key findings and risks

Avoid style-only feedback covered by linters/formatters.
claude_args: |
--model claude-opus-4-6-default
--allowedTools "Bash(gh pr view ${{ env.TARGET_PR }}:*),Bash(gh pr diff ${{ env.TARGET_PR }}:*),Bash(gh pr comment ${{ env.TARGET_PR }} --body:*),mcp__github_inline_comment__create_inline_comment"
Loading