mirror of
https://gitea.com/actions/checkout.git
synced 2024-10-31 17:10:35 +01:00
Apply suggestions from code review
Co-authored-by: Usman <akeju00+github@gmail.com>
This commit is contained in:
parent
d48599a299
commit
f787e7d544
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user