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
Prev Previous commit
Apply suggestions from code review
Co-authored-by: Usman <akeju00+github@gmail.com>
  • Loading branch information
jablko and usmonster authored Oct 6, 2023
commit f787e7d544c130d1f240b14444b0ce9724a4f6db
4 changes: 2 additions & 2 deletions src/git-source-provider.ts
Original file line number Diff line number Diff line change
@@ -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 {