We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 81742ca + 2993800 commit 4784cd5Copy full SHA for 4784cd5
scripts/releasing/create-patch-pr.js
@@ -95,6 +95,11 @@ async function main() {
95
);
96
run(`git checkout -b ${hotfixBranch} origin/${releaseBranch}`, dryRun);
97
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
+
103
// Cherry-pick the commit.
104
console.log(`Cherry-picking commit ${commit} into ${hotfixBranch}...`);
105
let hasConflicts = false;
0 commit comments