From b7f65aaa360f3d865bf1b8e50691fade8b6a8bc4 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Tue, 26 May 2026 14:49:46 -0400 Subject: [PATCH] CI/CD: Disable AI PR review in Github Actions We removed the Gemini Token since it wasn't free. Graphite's AI review is turned on as well, but doesn't have the context pulled from Notion from the tickets. We can look into this enabling this again in the future or remove this functionality completely. --- .github/workflows/ai-review.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ai-review.yml b/.github/workflows/ai-review.yml index bef0af511..9fd324022 100644 --- a/.github/workflows/ai-review.yml +++ b/.github/workflows/ai-review.yml @@ -2,10 +2,15 @@ name: AI Code Review run-name: Running AI code review on ${{ github.actor }}'s branch on: - pull_request: - types: [opened, reopened, ready_for_review, synchronize] - issue_comment: - types: [created] + workflow_dispatch: + # Disabling this workflow for now, as it requires a paid Gemini Token. + # Graphite's AI review is also turned on, but doesn't take the notion ticket into the context. + +#on: +# pull_request: +# types: [opened, reopened, ready_for_review, synchronize] +# issue_comment: +# types: [created] permissions: contents: write