This commit is contained in:
Ashwin Bhat
2025-08-05 10:52:43 -07:00
parent 2845685880
commit 3c5b0a6e9c

View File

@@ -33,7 +33,7 @@ export async function configureGitAuth(
if (user) { if (user) {
const botName = user.login; const botName = user.login;
const botId = user.id; const botId = user.id;
console.log(`Setting git user as ${botName}...`); console.log(`Setting git user as ${botName} (id: ${botId})...`);
await $`git config user.name "${botName}"`; await $`git config user.name "${botName}"`;
await $`git config user.email "${botId}+${botName}@${noreplyDomain}"`; await $`git config user.email "${botId}+${botName}@${noreplyDomain}"`;
console.log(`✓ Set git user as ${botName}`); console.log(`✓ Set git user as ${botName}`);