Skip to content

PR-Agent Sample

PR-Agent Sample #1

Workflow file for this run

name: Android CI
on:
pull_request:
types: [opened, reopened, synchronize]
issue_comment:
types: [created, edited]
permissions:
pull-requests: write
issues: write
jobs:
pr_agent:
runs-on: ubuntu-latest
name: Run PR Agent
if: ${{ github.event.sender.type != 'Bot' }}
steps:
- id: pr-agent
uses: Codium-ai/pr-agent@main
env:
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}