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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Set default user.name and user.email
  • Loading branch information
jablko authored Sep 15, 2021
commit d48599a2993b80f59181066b1295533674d04d4d
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'
@@ -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) {