From 429f9f7973920ad93628d2e6ad3894c83f291e02 Mon Sep 17 00:00:00 2001 From: Karen Date: Fri, 2 Oct 2020 04:43:28 +0300 Subject: [PATCH] Add [email] git config --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 92ef09e..a370c4e 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ const github = require('@actions/github'); const { exec } = require('child_process'); try { - exec(`git config user.name "GitHub Actions Bot" && git config user.email "<>"`, (err) => { + exec(`git config user.name "GitHub Actions Bot" && git config user.email "action@github.com"`, (err) => { if (err) { throw err; }