Compare commits

...

1 Commits

Author SHA1 Message Date
Ashwin Bhat
3c5b0a6e9c tmp 2025-08-05 10:52:43 -07:00

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}`);