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
parent
commit
91595aaec4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/command-compile.yml

4
.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

Loading…
Cancel
Save