From 069d04c0cd654c24f04de9e1dd4c9764d87754d8 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Fri, 3 Apr 2026 13:17:18 -0700 Subject: [PATCH] devops: added qodo review action --- .github/workflows/qodo_review.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/qodo_review.yml 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