Merge main back into dev to reconcile the squash-promotion divergence #91
No reviewers
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Jinemi/thermograph#91
Loading…
Reference in a new issue
No description provided.
Delete branch "sync/main-into-dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Prerequisite for the beta promotion. Merge this first, then #90 becomes mergeable.
Why the promotion was blocked
promoteopened #90 and reportedmergeable: false—devis 5 ahead but 22 behindmain, with a certain modify/delete conflict.The cause: recent promotions were merged with squash rather than "Create merge commit". A squash replays dev's commits onto
mainunder new SHAs, so the branches share content but not history.mainthen looks like it independently edited the same files, and every later promotion inherits the divergence.promote's own docs warn about this — "a squash would rewrite shared history".Real conflicts, confirmed with
git merge-tree --write-tree:CLAUDE.md,README.md— content conflicts(Correction to something I said earlier: I previously reported this merge as conflict-free. That check used
git merge-tree's legacy three-arg form, which doesn't surface conflicts in the format I was grepping for. It was a false negative.)Resolution
Both conflicts take dev's side — not as a default, but because
main's side describes workflows that no longer exist (*-deploy-dev.yml,backend-build-push, and friends). Keeping it would reintroduce exactly the staleness the rootCLAUDE.mdnow forbids: statements naming files that aren't there.The eight deleted workflows stay deleted. The merge result carries the nine #87 left behind.
Verification
shellcheck -xclean across all 34 scripts (CI-equivalent invocation, pinned v0.11.0).After this lands
#90 (
dev→main) should go green and mergeable. Merge that one with "Create merge commit", not squash — otherwise this divergence recurs immediately and the next promotion needs the same repair.