ENH: Add Qodo PR-Agent workflow using Google Gemini #1
This file contains hidden or 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
| name: Qodo PR-Agent Gemini Reviewer | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| pr_agent_job: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| contents: read | |
| name: Run PR Agent | |
| steps: | |
| - name: PR Agent Action | |
| uses: Codium-ai/pr-agent-action@main | |
| env: | |
| OPENAI_KEY: ${{ secrets.GEMINI_API_KEY }} | |
| PR_AGENT.MODEL: "gemini/gemini-2.5-pro" | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |