name: Claude Auto Review on: pull_request: types: [ready_for_review, opened] concurrency: group: claude-review-${{ github.event.pull_request.number }} cancel-in-progress: true jobs: auto-review: runs-on: ubuntu-latest if: github.event.pull_request.draft == false || github.event.pull_request.ready_for_review == true permissions: contents: read pull-requests: read id-token: write steps: - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 1 - name: Automatic PR Review uses: anthropics/claude-code-action@v1 with: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} track_progress: true prompt: | REPO: ${{ github.repository }} PR NUMBER: ${{ github.event.pull_request.number }} Please review this pull request and provide comprehensive feedback. Focus on: - Code quality and best practices - Potential bugs or issues - Performance considerations - Security implications Provide detailed feedback using inline comments for specific issues. Use top-level comments for general observations or praise. At the end of your review, add complete instructions to reproduce the added changes through the app interface. These instructions will be given to a tester so he can verify the changes. It should be a short descriptive text (not a step by step or a list) on how to navigate the app (what page, what action, what input, etc) to see the changes. claude_args: | --allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*)" --model opus