chore(deps): update react-aria #3875
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Claude Code Review | |
| # Trigger: Comment '/claude-review' on a pull request to request a review | |
| # Usage: Engineers can request a review by commenting '/claude-review' on any PR | |
| # This allows control over when reviews happen - make all fixes first, then request review | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| claude-review: | |
| # Only run if: | |
| # - Comment is on a pull request (not a standalone issue) | |
| # - Comment contains the '/claude-review' command | |
| # - Comment author is not a bot | |
| if: | | |
| github.event.issue.pull_request && | |
| contains(github.event.comment.body, '/claude-review') && | |
| !contains(github.actor, '[bot]') | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| issues: read | |
| id-token: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| with: | |
| fetch-depth: 1 | |
| - name: Run Claude Code Review | |
| id: claude-review | |
| uses: anthropics/claude-code-action@833fb0f8c9f6686b33d963a8bae0a94f4936ab2a # v1 | |
| with: | |
| anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| prompt: | | |
| REPO: ${{ github.repository }} | |
| PR NUMBER: ${{ github.event.issue.number }} | |
| Please review this pull request and provide comprehensive feedback on: | |
| - Code quality and best practices | |
| - Potential bugs or issues | |
| - Performance considerations | |
| - Security concerns | |
| - Test coverage | |
| Further Instructions: | |
| - Use the repository's CLAUDE.md for guidance on style and conventions. | |
| - Be constructive and helpful in your feedback | |
| Use `gh pr comment` with your Bash tool to leave your review as a comment on the PR. | |
| # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md | |
| # or https://docs.claude.com/en/docs/claude-code/cli-reference for available options | |
| claude_args: '--allowed-tools "Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*)"' |