Browse Source
fix(workflows): disable editing commit when rebasing
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
pull/50258/head
John Molakvoæ
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
.github/workflows/command-compile.yml
|
|
|
@ -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 |
|
|
|
|