Skip to content

fix: merge latest dev updates into main #3

fix: merge latest dev updates into main

fix: merge latest dev updates into main #3

Workflow file for this run

name: AI Code Review
on:
pull_request:
branches: [main]
jobs:
review:
name: Claude Code Review
runs-on: ubuntu-latest
# Skip if the PR was opened by the bot itself
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