Skip to content

Commit c48a774

Browse files
mattKorwelnagendrareddy10
authored andcommitted
use the cla user (google-gemini#8804)
1 parent 9bcd70f commit c48a774

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/releasing/create-patch-pr.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ async function main() {
9595
);
9696
run(`git checkout -b ${hotfixBranch} origin/${releaseBranch}`, dryRun);
9797

98+
// Ensure git user is configured properly for commits
99+
console.log('Configuring git user for cherry-pick commits...');
100+
run('git config user.name "gemini-cli-robot"', dryRun);
101+
run('git config user.email "[email protected]"', dryRun);
102+
98103
// Cherry-pick the commit.
99104
console.log(`Cherry-picking commit ${commit} into ${hotfixBranch}...`);
100105
let hasConflicts = false;

0 commit comments

Comments
 (0)