Skip to content

Commit 77591e2

Browse files
authored
Merge pull request #3459 from github/copilot/fix-github-actions-workflow-again
Fix `git merge --continue` missing --no-edit in Rebuild workflow
2 parents 7deb0a1 + 7a44a9d commit 77591e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/rebuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
# Otherwise, just commit the changes.
112112
if git rev-parse --verify MERGE_HEAD >/dev/null 2>&1; then
113113
echo "In progress merge detected, finishing it up."
114-
git merge --continue
114+
git merge --continue --no-edit
115115
else
116116
echo "No in-progress merge detected, committing changes."
117117
git commit -m "Rebuild"

0 commit comments

Comments
 (0)