From 91595aaec409a1bf57148f3947422b7094e06eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Fri, 1 Aug 2025 11:20:38 +0200 Subject: [PATCH] fix(workflows): 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æ --- .github/workflows/command-compile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/command-compile.yml b/.github/workflows/command-compile.yml index 7b74107f928..51610e91c7c 100644 --- a/.github/workflows/command-compile.yml +++ b/.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