From cdb65031c7510567d6018015eb1bc65a6a1b404e Mon Sep 17 00:00:00 2001 From: Ali Caglayan Date: Sat, 29 Apr 2023 14:15:52 +0200 Subject: [PATCH] use github actions bot This will allow for the github user not to show up in a projects insights. --- src/git.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/git.ts b/src/git.ts index d3f459d12..b616aac5b 100644 --- a/src/git.ts +++ b/src/git.ts @@ -54,9 +54,9 @@ export async function cmd(additionalGitOptions: string[], ...args: string[]): Pr const userArgs = [ ...additionalGitOptions, '-c', - 'user.name=github-action-benchmark', + 'user.name=github-actions[bot]', '-c', - 'user.email=github@users.noreply.github.com', + 'user.email=github-actions[bot]@users.noreply.github.com', '-c', `http.${serverUrl}/.extraheader=`, // This config is necessary to support actions/checkout@v2 (#9) ];