We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e80a054 commit 8ad457dCopy full SHA for 8ad457d
.github/workflows/pr_agent.yml
@@ -0,0 +1,20 @@
1
+on:
2
+ pull_request:
3
+ types: [opened, reopened, ready_for_review]
4
+ issue_comment:
5
+jobs:
6
+ pr_agent_job:
7
+ if: ${{ github.event.sender.type != 'Bot' }}
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ issues: write
11
+ pull-requests: write
12
+ contents: write
13
+ name: Run pr agent on every pull request, respond to user comments
14
+ steps:
15
+ - name: PR Agent action step
16
+ id: pragent
17
+ uses: qodo-ai/pr-agent@main
18
+ env:
19
+ OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments