Automated GitHub Action that reviews Pull Requests for bugs, security, and styles using OpenAI GPT-4.
Code reviews were blocking deployments, and senior engineers were wasting time on minor style nits and pattern matching instead of architecture.
Integrated an AI agent into GitHub Actions that reviews PRs for style, security, and basic bugs before a human ever sees it. It posts comments directly on lines of code.

name: AI PR Reviewer
on: [pull_request]
jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run AI Reviewer
uses: aavnishyadav/ai-reviewer@v1
with:
openai_key: ${{ secrets.OPENAI_API_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}