Skip to content

Commit d4876ed

Browse files
authored
Merge pull request #2039 from codeflash-ai/ci/disable-pr-review
ci: temporarily disable automatic PR review job
2 parents 9e69239 + 5073190 commit d4876ed

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/claude.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,21 @@ on:
2727
jobs:
2828
# Automatic PR review (can fix linting issues and push)
2929
# Blocked for fork PRs to prevent malicious code execution
30+
# TEMPORARILY DISABLED — re-enable by removing `false &&` below
3031
pr-review:
3132
concurrency:
3233
group: pr-review-${{ github.head_ref || github.run_id }}
3334
cancel-in-progress: true
3435
if: |
36+
false &&
3537
(
36-
github.event_name == 'pull_request' &&
37-
github.event.sender.login != 'claude[bot]' &&
38-
github.event.pull_request.head.repo.full_name == github.repository
39-
) ||
40-
github.event_name == 'workflow_dispatch'
38+
(
39+
github.event_name == 'pull_request' &&
40+
github.event.sender.login != 'claude[bot]' &&
41+
github.event.pull_request.head.repo.full_name == github.repository
42+
) ||
43+
github.event_name == 'workflow_dispatch'
44+
)
4145
runs-on: ubuntu-latest
4246
permissions:
4347
contents: write

0 commit comments

Comments
 (0)