Skip to content

chore: Backport to v5 next staging#24010

Merged
alexghr merged 2 commits into
v5-nextfrom
backport-to-v5-next-staging
Jun 11, 2026
Merged

chore: Backport to v5 next staging#24010
alexghr merged 2 commits into
v5-nextfrom
backport-to-v5-next-staging

Conversation

@alexghr

@alexghr alexghr commented Jun 11, 2026

Copy link
Copy Markdown
Contributor

No description provided.

AztecBot and others added 2 commits June 11, 2026 06:44
)

Two changes scoped to the **public** repo
(`AztecProtocol/aztec-packages`) nightly flow, plus a follow-up
tightening of the scenario-test trigger. Private tagging is unchanged.

`ci3.yml`'s `ci-network-scenario` job fired on any current nightly tag
in both repos. Private produces both a `next` (v6) and a `v5-next` (v5)
nightly tag, so simply gating to the private repo still ran scenarios
against the v6 nightly. The nightly-triggered path is now gated to
**private repo + a `v5.` nightly tag**:

```yaml
(
  needs.validate-nightly-tag.outputs.is_current == 'true'
  && github.repository == 'AztecProtocol/aztec-packages-private'
  && startsWith(github.ref_name, 'v5.')
)
|| contains(github.event.pull_request.labels.*.name, 'ci-network-scenario')
```

`v5-next` is at `5.x.x` (tag `v5.x.x-nightly.*`) and `next` is at
`6.x.x` (tag `v6.x.x-nightly.*`), so `startsWith(github.ref_name,
'v5.')` selects the v5-next nightly only. The manual PR-label path
(`ci-network-scenario`) is preserved for ad-hoc dev runs.

`nightly-release-tag.yml`'s matrix tagged `[next, v5-next]` in both
repos. The branch list is now repo-dependent: private keeps `[next,
v5-next]`, public tags only `v5-next` (and `v4-next` via its existing
dedicated job). Net result: **public tags `v4-next` + `v5-next` only**,
private is untouched.

Nightly network scenario tests should run only against the private
v5-next nightly, and public should not produce a `next` nightly tag.
@alexghr alexghr requested a review from charlielye as a code owner June 11, 2026 09:02
@alexghr alexghr enabled auto-merge June 11, 2026 09:03
@alexghr alexghr disabled auto-merge June 11, 2026 09:03
@alexghr alexghr enabled auto-merge June 11, 2026 09:03
@alexghr alexghr added this pull request to the merge queue Jun 11, 2026
Merged via the queue into v5-next with commit c3c4043 Jun 11, 2026
11 of 12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants