Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set default user.name and user.email #584

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/git-source-provider.ts
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -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) {
jablko marked this conversation as resolved.
Show resolved Hide resolved
await git.config('user.email', 'github-actions@github.com', true)
}
} finally {
// Remove auth
if (!settings.persistCredentials) {
Expand Down