Skip to content

Commit 787120c

Browse files
author
Amelia Wattenbeger
committed
fix: set user as the commit author
1 parent cca60e7 commit 787120c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15084,7 +15084,7 @@ var main = async () => {
1508415084
await (0, import_exec.exec)("git", [
1508515085
"config",
1508615086
"user.email",
15087-
"wattenberger@github.com"
15087+
`${username}@users.noreply.github.com`
1508815088
]);
1508915089
core.endGroup();
1509015090
const excludedPathsString = core.getInput("excluded_paths") || "node_modules,bower_components,dist,out,build,eject,.next,.netlify,.yarn,.git,.vscode,package-lock.json,yarn.lock";

src/index.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ const main = async () => {
1616
await exec('git', [
1717
'config',
1818
'user.email',
19-
// `${username}@users.noreply.github.com`,
20-
19+
`${username}@users.noreply.github.com`,
2120
])
2221

2322
core.endGroup()

0 commit comments

Comments
 (0)