File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 2727jobs :
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
You can’t perform that action at this time.
0 commit comments