From acc902ff62f328703d71a60e20c6321bef799726 Mon Sep 17 00:00:00 2001 From: Niklas Wenzel Date: Tue, 25 Nov 2025 15:27:41 +0100 Subject: [PATCH] fix: sign CL cherry-pick commits --- src/e-cherry-pick.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/e-cherry-pick.js b/src/e-cherry-pick.js index 51a75ff0..0b386575 100644 --- a/src/e-cherry-pick.js +++ b/src/e-cherry-pick.js @@ -137,7 +137,7 @@ program d(`Committing changes`); const commitMsg = `chore: cherry-pick ${shortCommit} from ${patchDirName}`; cp.execSync(`git add ${patchPath}`, { cwd: electronPath }); - cp.execSync(`git commit -m "${commitMsg}"`, { + cp.execSync(`git commit -S -m "${commitMsg}"`, { cwd: electronPath, stdio: 'ignore', });