fix: restore setting user in git config (#278)

This commit is contained in:
David Sanders 2024-04-08 12:43:17 -07:00 коммит произвёл GitHub
Родитель 65c107ea08
Коммит d4766f5008
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -65,5 +65,10 @@ export const initRepo = async ({
await git.clone(cacheDir, '.');
});
const config = fs.readFileSync('./config.yml', 'utf8');
const { tropEmail, tropName } = parse(config);
await git.addConfig('user.email', tropEmail || 'trop@example.com');
await git.addConfig('user.name', tropName || 'Trop Bot');
return { dir };
};