use the cla user (#8804)

This commit is contained in:
matt korwel
2025-09-18 20:29:39 -07:00
committed by GitHub
parent e678b231a3
commit 2993800e07

View File

@@ -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;