Merge pull request #3459 from github/copilot/fix-github-actions-workflow-again

Fix `git merge --continue` missing --no-edit in Rebuild workflow
This commit is contained in:
Henry Mercer
2026-02-05 15:00:59 +00:00
committed by GitHub
+1 -1
View File
@@ -111,7 +111,7 @@ jobs:
# Otherwise, just commit the changes.
if git rev-parse --verify MERGE_HEAD >/dev/null 2>&1; then
echo "In progress merge detected, finishing it up."
git merge --continue
git merge --continue --no-edit
else
echo "No in-progress merge detected, committing changes."
git commit -m "Rebuild"