From 2993800e07c21b46e7aab8da870050dab47651e1 Mon Sep 17 00:00:00 2001 From: matt korwel Date: Thu, 18 Sep 2025 20:29:39 -0700 Subject: [PATCH] use the cla user (#8804) --- scripts/releasing/create-patch-pr.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/releasing/create-patch-pr.js b/scripts/releasing/create-patch-pr.js index f9e34bb898..ceff7b49d7 100644 --- a/scripts/releasing/create-patch-pr.js +++ b/scripts/releasing/create-patch-pr.js @@ -95,6 +95,11 @@ async function main() { ); run(`git checkout -b ${hotfixBranch} origin/${releaseBranch}`, dryRun); + // Ensure git user is configured properly for commits + console.log('Configuring git user for cherry-pick commits...'); + run('git config user.name "gemini-cli-robot"', dryRun); + run('git config user.email "gemini-cli-robot@google.com"', dryRun); + // Cherry-pick the commit. console.log(`Cherry-picking commit ${commit} into ${hotfixBranch}...`); let hasConflicts = false;