File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments