Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,9 @@ jobs:
- name: Print Claude execution output
if: always()
run: cat /home/runner/work/_temp/claude-execution-output.json || echo "No execution output found"

- name: Fail if the review was skipped
if: steps.claude-review.outputs.skipped_due_to_workflow_validation_mismatch == 'true'
run: |
echo "::error::Claude review did not run: this PR modifies its own review workflow, so claude-code-action skipped the token exchange. Review the upstream release notes for the bumped dependencies by hand before merging."
exit 1
6 changes: 6 additions & 0 deletions .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,9 @@ jobs:
- name: Print Claude execution output
if: always()
run: cat /home/runner/work/_temp/claude-execution-output.json || echo "No execution output found"

- name: Fail if the review was skipped
if: steps.claude-review.outputs.skipped_due_to_workflow_validation_mismatch == 'true'
run: |
echo "::error::Claude review did not run: this PR modifies its own review workflow, so claude-code-action skipped the token exchange. This PR needs a manual review."
exit 1
3 changes: 3 additions & 0 deletions .github/workflows/tilt-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ jobs:
# Empty = the event's default checkout; callers on pull_request_target
# pass the PR head SHA here.
ref: ${{ inputs.checkout_ref }}
# checkout refuses fork code under pull_request_target unless opted in;
# flow.yml's external-contributor environment gate is the human review.
allow-unsafe-pr-checkout: true

# Combination id for test-results ingestion steps
- name: Compute run identity
Expand Down
Loading