Skip to content

Commit

Permalink
Merge pull request #17 from ivelin/ci-create
Browse files Browse the repository at this point in the history
ci: create initial pr agent action
  • Loading branch information
ivelin authored Feb 26, 2024
2 parents c6bebd1 + 2db3fea commit f09f7d4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pr_agent.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on:
pull_request:
types:
- opened
- reopened
- ready_for_review
- review_requested

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 f09f7d4

Please sign in to comment.