diff --git a/.github/workflows/qodo_review.yml b/.github/workflows/qodo_review.yml new file mode 100644 index 0000000..a4137aa --- /dev/null +++ b/.github/workflows/qodo_review.yml @@ -0,0 +1,25 @@ +name: Qodo AI PR Reviewer + +on: + pull_request: + types: [opened, synchronize] + +jobs: + qodo_review: + runs-on: ubuntu-latest + steps: + - name: Run Qodo Merge + uses: https://github.com/Codium-ai/pr-agent@main + env: + # Platform Settings + CONFIG.GIT_PROVIDER: "gitea" + GITEA.URL: "https://git.gophernest.net" + GITEA.PERSONAL_ACCESS_TOKEN: ${{ secrets.GIT_TOKEN }} + + # AI Settings + CONFIG.MODEL_PROVIDER: "google" + GOOGLE.API_KEY: ${{ secrets.GEMINI_API_KEY }} + CONFIG.MODEL: "google/gemini-3-flash" # The 2026 standard for fast reviews + + # Automation + GITEA.PR_OPENED_COMMANDS: '["/review", "/describe"]' \ No newline at end of file