Skip to content

Commit

Permalink
fix: Revert "fix: noir mirror merge strat" (#5250)
Browse files Browse the repository at this point in the history
This caused bigger problems than -Xtheirs did, oops. Sometimes merges
will just get stuck, c'est la vie
  • Loading branch information
ludamad committed Mar 15, 2024
1 parent 9cc32cb commit 7e8e8e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mirror_noir_subrepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
cd noir-repo
git fetch # see recent change
git checkout $BRANCH || git checkout -b $BRANCH
git merge -Xours origin/$STAGING_BRANCH -m "$COMMIT_MESSAGE"
git merge -Xtheirs origin/$STAGING_BRANCH -m "$COMMIT_MESSAGE"
git push origin $BRANCH
cd ..
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_noir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
# Fix PR branch
git fetch # see recent change
git checkout $BRANCH || git checkout -b $BRANCH
git merge -Xours origin/$STAGING_BRANCH -m "$COMMIT_MESSAGE"
git merge -Xtheirs origin/$STAGING_BRANCH -m "$COMMIT_MESSAGE"
git push origin $BRANCH
}
force_sync_staging
Expand Down

0 comments on commit 7e8e8e5

Please sign in to comment.