From 3be66086c9d9a7c21b48c79369a7339c00842993 Mon Sep 17 00:00:00 2001 From: Vibe Code Date: Sat, 8 Aug 2026 12:41:02 +0200 Subject: [PATCH] ci: remove the automated PR review workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It has not been earning its slot. It failed outright on #117 while its own steps reported success, then hung for twenty-two minutes on #127 — a thirty-three-commit pull request — and never reported at all, leaving a permanently pending check on a branch whose twenty real gates had already passed. A check that neither passes nor fails is worse than no check: it makes every merge a judgement call about whether to wait. The reviewing it was meant to do is happening anyway. Codex reviews the same pull requests and posted a clean result on #127, and the work in this repository already goes through explicit review before it reaches a branch. claude-interactive.yml stays — it answers mentions in comments, which is opt-in and does not gate anything. claude-login.yml stays with it, since that is how it authenticates. No contract test referenced the removed workflow. --- .github/workflows/claude-pr-review.yml | 46 -------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/claude-pr-review.yml diff --git a/.github/workflows/claude-pr-review.yml b/.github/workflows/claude-pr-review.yml deleted file mode 100644 index 70cfd37a..00000000 --- a/.github/workflows/claude-pr-review.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: PR Review - -on: - pull_request: - types: [opened, synchronize, ready_for_review] - paths: - - 'plugins/**' - -jobs: - review: - if: > - github.event.pull_request.draft == false && - github.event.pull_request.user.type != 'Bot' && - !endsWith(github.event.pull_request.user.login, '[bot]') - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: write - id-token: write - concurrency: - group: pr-review-${{ github.event.pull_request.number }} - cancel-in-progress: true - steps: - - name: Checkout - uses: actions/checkout@v7 - with: - fetch-depth: 0 - - - name: Run Claude Code - uses: anthropics/claude-code-action@v1 - with: - anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} - prompt: | - Read .github/review-instructions.md for your review instructions. - - PR_NUMBER: ${{ github.event.pull_request.number }} - TITLE: ${{ github.event.pull_request.title }} - BODY: ${{ github.event.pull_request.body }} - AUTHOR: ${{ github.event.pull_request.user.login }} - BASE: ${{ github.event.pull_request.base.ref }} - HEAD: ${{ github.event.pull_request.head.ref }} - CHANGED_FILES: ${{ github.event.pull_request.changed_files }} - claude_args: | - --model claude-sonnet-4-6 - --max-turns 12 - --allowedTools "Read,Glob,Grep,Bash(git diff:*),Bash(git log:*),Bash(git show:*),Bash(gh pr comment:*),mcp__github_inline_comment__create_inline_comment"