Skip to content

Commit

Permalink
Merge pull request #8 from subspace/pr-ai-agent
Browse files Browse the repository at this point in the history
add CI workflow for codium PR AI agent
  • Loading branch information
jfrank-summit authored Apr 9, 2024
2 parents 3c50b3a + 1dd8de6 commit f1909db
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr-ai-agent.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI for Codium AI PR Agent

on:
pull_request:
types: [opened, reopened]
issue_comment:
types: [created, edited]

jobs:
pr_agent_job:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
contents: write
name: Run pr agent on every pull request, respond to user comments
steps:
- name: PR Agent action step
id: pragent
uses: Codium-ai/pr-agent@main
env:
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f1909db

Please sign in to comment.