fix: merge latest dev updates into main #1
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: AI Code Review | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| review: | |
| name: Claude Code Review | |
| runs-on: ubuntu-latest | |
| if: github.actor != 'github-actions[bot]' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: npm install @anthropic-ai/sdk @octokit/rest | |
| - name: Run AI Review | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.AUTO_PR_TOKEN }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| run: node scripts/ai-review.mjs |