Skip to content
Open
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
4 changes: 4 additions & 0 deletions .github/workflows/tests-integration-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
ref: ${{inputs.gitRef}}
fetch-depth: 0
path: cli
# gitRef is only ever populated by tests-integration.yml's get-sha
# job, which is gated on OWNER/COLLABORATOR authors or the
# safe-to-test label.
allow-unsafe-pr-checkout: true

- name: Checkout CF deployment tasks
uses: actions/checkout@v7
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ jobs:
with:
ref: ${{needs.get-sha.outputs.gitRef}}
fetch-depth: 0
# get-sha only produces this ref for OWNER/COLLABORATOR authors or
# after a maintainer applies the safe-to-test label - see get-sha's
# if: condition above.
allow-unsafe-pr-checkout: true
- name: Set Up Go
uses: actions/setup-go@v6
with:
Expand Down
Loading