Skip to content

Commit 4784cd5

Browse files
committed
Merge Commit '2993800': use the cla user (google-gemini#8804)
2 parents 81742ca + 2993800 commit 4784cd5

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)