mirror of
https://github.com/actions/checkout
synced 2024-11-09 15:12:39 +00:00
Set default user.name and user.email
This commit is contained in:
parent
afe4af09a7
commit
d48599a299
1 changed files with 9 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
import * as core from '@actions/core'
|
||||
import * as github from '@actions/github'
|
||||
import * as fsHelper from './fs-helper'
|
||||
import * as gitAuthHelper from './git-auth-helper'
|
||||
import * as gitCommandManager from './git-command-manager'
|
||||
|
@ -216,6 +217,14 @@ export async function getSource(settings: IGitSourceSettings): Promise<void> {
|
|||
settings.ref,
|
||||
settings.commit
|
||||
)
|
||||
|
||||
// Set default author
|
||||
if (!await git.configExists('user.name', true) {
|
||||
await git.config('user.name', github.context.workflow, true)
|
||||
}
|
||||
if (!await git.configExists('user.email', true) {
|
||||
await git.config('user.email', 'github-actions@github.com', true)
|
||||
}
|
||||
} finally {
|
||||
// Remove auth
|
||||
if (!settings.persistCredentials) {
|
||||
|
|
Loading…
Reference in a new issue