From 368d7ae9b1e1b1a50eed3fb446f38367faa6be4e Mon Sep 17 00:00:00 2001 From: Dhruvdutt Jadhav Date: Wed, 26 May 2021 15:47:29 +0530 Subject: [PATCH] Update gitUtils.ts --- src/gitUtils.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gitUtils.ts b/src/gitUtils.ts index 77efeaa0..3c579830 100644 --- a/src/gitUtils.ts +++ b/src/gitUtils.ts @@ -4,13 +4,11 @@ import { execWithOutput } from "./utils"; export const setupUser = async () => { await exec("git", [ "config", - "--global", "user.name", `"github-actions[bot]"`, ]); await exec("git", [ "config", - "--global", "user.email", `"github-actions[bot]@users.noreply.github.com"`, ]);