chore(deps-dev): bump @react-native-community/cli-platform-ios from 20.1.0 to 20.1.3 #20
Workflow file for this run
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 | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| review: | |
| if: github.event.pull_request.user.login != 'dependabot[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Claude Code Review | |
| uses: anthropics/claude-code-action@beta | |
| with: | |
| anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY_GITHUB_ACTIONS }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| direct_prompt: | | |
| Review this pull request. Focus on: | |
| - Correctness of the TypeScript API surface changes | |
| - Whether API.md is updated if src/index.tsx exports changed | |
| - Native layer consistency (android/ and ios/ should change together) | |
| - Conventional Commits format on the PR title | |
| - Any obvious bugs, type errors, or missing edge cases | |
| use_sticky_comment: true |