Switch primary model to GPT-4 Turbo Preview with GPT-4 as fallback #1635
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow enables developers to call PR-Agents `/[actions]` in PR's comments and upon PR creation. | |
# Learn more at https://www.codium.ai/pr-agent/ | |
# This is v0.2 of this workflow file | |
name: PR-Agent | |
on: | |
pull_request: | |
issue_comment: | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
pr_agent_job: | |
runs-on: ubuntu-latest | |
name: Run pr agent on every pull request | |
steps: | |
- name: PR Agent action step | |
id: pragent | |
uses: Codium-ai/pr-agent@main | |
env: | |
OPENAI_KEY: ${{ secrets.OPENAI_KEY }} | |
OPENAI_ORG: ${{ secrets.OPENAI_ORG }} # optional | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PINECONE.API_KEY: ${{ secrets.PINECONE_API_KEY }} | |
PINECONE.ENVIRONMENT: ${{ secrets.PINECONE_ENVIRONMENT }} | |