1 diff --git a/.github/workflows/antigravity-review.yml b/.github/workflows/antigravity-review.yml
2 new file mode 100644
3 index 0000000..64faaee
4 --- /dev/null
5 +++ b/.github/workflows/antigravity-review.yml
7++name: AI Code Review
8++on:
9++ pull_request:
10++ types: [opened, synchronize]
11++ push:
12++ branches: [main, master]
13++
14++permissions:
15++ contents: read
16++ pull-requests: write
17++
18++jobs:
19++ review:
20++ runs-on: ubuntu-latest
21++ steps:
22++ - uses: actions/checkout@v4
23++ with:
24++ fetch-depth: 0
25++
26++ - uses: Seanbez/antigravity-reviewer@v1
27++ with:
28++ google-api-key: ${{ secrets.GOOGLE_API_KEY }}
29++ antigravity-api-key: ${{ secrets.ANTIGRAVITY_API_KEY }}
30 \ No newline at end of file
31