From 507319066a74f67b7fdf2a38d1f59532d0a65d6b Mon Sep 17 00:00:00 2001 From: Kevin Turcios Date: Thu, 9 Apr 2026 04:33:11 -0500 Subject: [PATCH] ci: temporarily disable automatic PR review job Adds `false &&` guard to the pr-review job condition. The job will be skipped on all triggers until this is reverted. The @claude mention job is unaffected. --- .github/workflows/claude.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index cfed60d21..df85db340 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -27,17 +27,21 @@ on: jobs: # Automatic PR review (can fix linting issues and push) # Blocked for fork PRs to prevent malicious code execution + # TEMPORARILY DISABLED — re-enable by removing `false &&` below pr-review: concurrency: group: pr-review-${{ github.head_ref || github.run_id }} cancel-in-progress: true if: | + false && ( - github.event_name == 'pull_request' && - github.event.sender.login != 'claude[bot]' && - github.event.pull_request.head.repo.full_name == github.repository - ) || - github.event_name == 'workflow_dispatch' + ( + github.event_name == 'pull_request' && + github.event.sender.login != 'claude[bot]' && + github.event.pull_request.head.repo.full_name == github.repository + ) || + github.event_name == 'workflow_dispatch' + ) runs-on: ubuntu-latest permissions: contents: write