Skip to content

Commit c3c4043

Browse files
authored
chore: Backport to v5 next staging (#24010)
2 parents 951b1fc + 8ff6a85 commit c3c4043

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci3.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,15 +208,19 @@ jobs:
208208
fail-fast: false
209209
matrix:
210210
test_set: ["1", "2"]
211-
# We run on current nightly tags only, or when the ci-network-scenario label is present in a PR.
211+
# We run on the current v5-next nightly tag (private repo only), or when the ci-network-scenario label is present in a PR.
212212
needs: [ci, validate-nightly-tag]
213213
if: |
214214
always()
215215
&& (needs.ci.result == 'success' || needs.ci.result == 'skipped')
216216
&& github.event.pull_request.head.repo.fork != true
217217
&& github.event.pull_request.draft == false
218218
&& (
219-
needs.validate-nightly-tag.outputs.is_current == 'true'
219+
(
220+
needs.validate-nightly-tag.outputs.is_current == 'true'
221+
&& github.repository == 'AztecProtocol/aztec-packages-private'
222+
&& startsWith(github.ref_name, 'v5.')
223+
)
220224
|| contains(github.event.pull_request.labels.*.name, 'ci-network-scenario')
221225
)
222226
steps:

0 commit comments

Comments
 (0)