We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c80c13 commit 0dad9d5Copy full SHA for 0dad9d5
1 file changed
cli.ts
@@ -48,6 +48,8 @@ if (core.getInput("strategy") === "clone") {
48
// https://github.com/stefanzweifel/git-auto-commit-action/blob/master/action.yml#L35-L42
49
await $`git config user.name github-actions[bot]`;
50
await $`git config user.email 41898282+github-actions[bot]@users.noreply.github.com`;
51
+await $`git config --global user.name github-actions[bot]`;
52
+await $`git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com`;
53
54
await appendFile(".git/info/exclude", core.getInput("ignore"));
55
await copy(resolve(workspacePath, core.getInput("path")), process.cwd());
0 commit comments