From ffbe5ebaa40052ca364e1789d5d2249301b9b76d Mon Sep 17 00:00:00 2001 From: Ignacio Van Droogenbroeck Date: Wed, 27 May 2026 16:06:11 -0600 Subject: [PATCH] ci: remove Claude Code workflow (auto-PR-review + @claude responder) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Deletes .github/workflows/claude-review.yml entirely. This workflow auto-ran Claude on every pull_request (opened/synchronize/reopened) and also responded to @claude mentions in issues/PR comments. Both are removed — no Claude automation runs on the repo after this. PR review going forward is handled by Gemini Code Assist (tagged per-PR per the team convention). --- .github/workflows/claude-review.yml | 35 ----------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/claude-review.yml diff --git a/.github/workflows/claude-review.yml b/.github/workflows/claude-review.yml deleted file mode 100644 index 50f310c..0000000 --- a/.github/workflows/claude-review.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Claude Code - -on: - issue_comment: - types: [created] - pull_request_review_comment: - types: [created] - issues: - types: [opened, labeled, assigned] - pull_request: - types: [opened, synchronize, reopened] - -jobs: - claude: - if: | - (github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) || - (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || - (github.event_name == 'issues' && contains(github.event.issue.labels.*.name, 'claude')) || - (github.event_name == 'pull_request') - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - issues: write - id-token: write - steps: - - uses: actions/checkout@v5 - with: - fetch-depth: 1 - - - uses: anthropics/claude-code-action@v1 - with: - anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} - trigger_phrase: "@claude" - claude_args: "--model claude-sonnet-4-6"