fix(docs): repair merge queue docs checks#24087
Merged
Merged
Conversation
c36515a to
0ecfe9a
Compare
0ecfe9a to
e702f35
Compare
alexghr
approved these changes
Jun 15, 2026
danielntmd
pushed a commit
to danielntmd/aztec-packages
that referenced
this pull request
Jun 16, 2026
BEGIN_COMMIT_OVERRIDE chore(ci): notify slack on benchmark success (AztecProtocol#23964) fix: interrupt publisher send-at-slot sleep on sequencer stop (AztecProtocol#23990) chore: aztec-node render external secrets (AztecProtocol#23997) chore: expose ROLLUP_VERSION (AztecProtocol#23998) chore: enable workload identity (AztecProtocol#23999) feat: kong ingress (AztecProtocol#24000) feat: add version RPC deployments (AztecProtocol#24001) feat: add readiness gate (AztecProtocol#24002) chore: update IAM roles (AztecProtocol#24011) chore: conflicts (AztecProtocol#24019) chore: resolve merge conficts (AztecProtocol#24044) chore(ci): align nightly scheduled workflow times (AztecProtocol#24045) chore: merge next into merge-train/spartan (resolve conflicts) (AztecProtocol#24052) fix(docs): repair webapp tutorial build on spartan train (AztecProtocol#24057) fix: repair webapp tutorial on spartan train (AztecProtocol#24084) fix(docs): repair merge queue docs checks (AztecProtocol#24087) END_COMMIT_OVERRIDE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Investigated the latest
merge-train/spartandequeue for PR #23971. The PR is still mergeable againstnext; the latest removal from the merge queue happened at 2026-06-15T10:50:03Z after the synthetic merge-group SHAf202a73a3147bc7a5342b73ea4298f95040e762bfailed CI.The failing docs subjob ended with:
That happens because merge-group checkouts may not have
origin/nextlocally. The same subjob also showed real Vite resolution failures for local linked tutorial packages, but the docs examples wrapper masked them by disablingerrexitwhile capturing step output.Changes
refs/remotes/origin/<base>when it is missing, and honorMERGE_GROUP_BASE_REFfor merge-group events.@aztec/protocol-contractsto the webapp tutorial dependency list.@aztec/*dependency closure forworkspace:,portal:, andfile:deps, so locallink:installs behave like published npm package installs for transitive workspace packages such as@aztec/blob-liband@aztec/bb.js.lodash.times.errexitenabled inside docs example step capture so failing commands such asnpx vite buildare reported instead of followed by a success line.Verification
bash -n docs/bootstrap.sh docs/examples/bootstrap.shCI=1 GITHUB_EVENT_NAME=merge_group MERGE_GROUP_BASE_REF=refs/heads/next docs/bootstrap.sh check_orphaned_urlscorepack yarn@4.13.0 install --mode=skip-build, confirming@aztec/protocol-contracts,@aztec/blob-lib,@aztec/bb.js, andlodash.timesresolve from the tutorial install.Note: I also ran the exact requested
./bootstrap.sh ci; on this branch it exits immediately withUnknown command: ci, so there is no generic rootcientrypoint to run locally here.