fix(workflows): disable editing commit when rebasing

Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
pull/50258/head
John Molakvoæ 2025-08-01 11:20:38 +07:00 committed by GitHub
parent e8fbb0dfa5
commit 91595aaec4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

@ -161,8 +161,8 @@ jobs:
echo "No changes after conflict resolution, skipping commit"
git rebase --skip
else
echo "Changes found, continuing rebase"
git rebase --continue
echo "Changes found, continuing rebase without editing commit message"
git -c core.editor=true rebase --continue
fi
# Break if rebase is complete