You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
priority:develop:sync cannot update protected fork develop branches once the fork enforces pull-request-only + merge-queue rules.
After upstream PR LabVIEW-Community-CI-CD#985 merged on March 10, 2026, the checked-in helper still tried to push directly:
git push origin develop
GitHub rejected that with GH013 on LabVIEW-Community-CI-CD/compare-vi-cli-action-fork:
Repository rule violations found for refs/heads/develop.
- 11 of 11 required status checks are expected.
- Changes must be made through the merge queue.
- Changes must be made through a pull request.
Why this matters
The dual-fork control plane requires fork develop to stay aligned with upstream/develop before future fork work can be resumed safely. Once fork develop is protected like upstream, a direct-push sync path is no longer valid.
Summary
priority:develop:synccannot update protected forkdevelopbranches once the fork enforces pull-request-only + merge-queue rules.After upstream PR LabVIEW-Community-CI-CD#985 merged on March 10, 2026, the checked-in helper still tried to push directly:
GitHub rejected that with
GH013onLabVIEW-Community-CI-CD/compare-vi-cli-action-fork:Why this matters
The dual-fork control plane requires fork
developto stay aligned withupstream/developbefore future fork work can be resumed safely. Once forkdevelopis protected like upstream, a direct-push sync path is no longer valid.Evidence
node tools/npm/run-script.mjs priority:develop:sync -- --fork-remote alltools/priority/develop-sync.mjstools/priority/Sync-OriginUpstreamDevelop.ps1Expected behavior
priority:develop:syncdetects when a target forkdevelopbranch is PR-only / merge-queue-managed.git push <fork> develop.developaligned without ad hoc raw GitHub commands.Acceptance
developsync no longer fails withGH013when PR-only/merge-queue rules are enabled.origin,personal, orall.Related