mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
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.
This commit is contained in:
parent
9e6923916c
commit
507319066a
1 changed files with 9 additions and 5 deletions
14
.github/workflows/claude.yml
vendored
14
.github/workflows/claude.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue