0
1
Fork 0

Apply suggestions from code review

Co-authored-by: Usman <akeju00+github@gmail.com>
This commit is contained in:
Jack Bates 2023-10-06 06:25:44 -07:00 committed by GitHub
parent d48599a299
commit f787e7d544
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -219,10 +219,10 @@ export async function getSource(settings: IGitSourceSettings): Promise<void> {
)
// Set default author
if (!await git.configExists('user.name', true) {
if (!await git.configExists('user.name', true)) {
await git.config('user.name', github.context.workflow, true)
}
if (!await git.configExists('user.email', true) {
if (!await git.configExists('user.email', true)) {
await git.config('user.email', 'github-actions@github.com', true)
}
} finally {