pr-agent/.github/workflows/pr-agent.yml
3WjR b829a54659 Add PR-Agent workflow and demo change
This PR demonstrates PR-Agent's automated review capabilities.
The workflow will automatically review PRs when they are opened.
2025-10-29 09:17:53 -07:00

14 lines
343 B
YAML

name: PR Agent
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
pr_agent_job:
runs-on: ubuntu-latest
steps:
- name: PR Agent action step
uses: Codium-ai/pr-agent@main
env:
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}