From 74b6823ef2e5938ec96c7d1d4e22f9f0fe3af453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Sat, 2 Aug 2025 09:43:31 +0200 Subject: [PATCH] fix(command-compile): disable editing commit when rebasing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- workflow-templates/command-compile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow-templates/command-compile.yml b/workflow-templates/command-compile.yml index 7b74107..51610e9 100644 --- a/workflow-templates/command-compile.yml +++ b/workflow-templates/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