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
7 changes: 7 additions & 0 deletions .github/workflows/auto-format-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,13 @@ jobs:
repository: ${{ steps.pr.outputs.full_name }}
ref: ${{ steps.pr.outputs.sha }}
persist-credentials: false
# Reviewed opt-in to checkout v7's fork guard: no code from the
# fork tree is ever executed here. The steps below only `git apply`
# the patch from the trusted format artifact and run git
# add/commit/push — no scripts, hooks, or tooling from the
# checked-out tree. Credentials are not persisted; the push uses
# a scoped app token via GIT_ASKPASS.
allow-unsafe-pr-checkout: true

- name: Apply patch
if: steps.download.outputs.found == 'true'
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/query-counts-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,13 @@ jobs:
repository: ${{ steps.pr.outputs.full_name }}
ref: ${{ steps.pr.outputs.sha }}
persist-credentials: false
# Reviewed opt-in to checkout v7's fork guard: no code from the
# fork tree is ever executed here. The steps below only copy the
# inert snapshot JSONs from the trusted measure artifact and run
# git add/commit/push — no scripts, hooks, or tooling from the
# checked-out tree. Credentials are not persisted; the push uses
# a scoped app token via GIT_ASKPASS.
allow-unsafe-pr-checkout: true

- name: Apply snapshots
if: steps.download.outputs.found == 'true'
Expand Down
Loading