Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
takeruun committed Aug 7, 2024
1 parent 3c0c855 commit bdd2283
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr_agent.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
pull_request:
types: [opened, reopened, ready_for_review]
issue_comment:
jobs:
pr_agent_job:
if: ${{ github.event.sender.type != 'Bot' }}
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:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG.MODEL: llama3-70b-8192
CONFIG.MODEL_TURBO: llama3-70b-8192
CONFIG.FALLBACK_MODELS: 'groq/llama3-70b-8192'
GROQ.KEY: ${{ secrets.GROQ_KEY }}

0 comments on commit bdd2283

Please sign in to comment.