From 25b19bf216c8f9bab77c4964954568f406c0a55c Mon Sep 17 00:00:00 2001 From: Alex Wang Date: Wed, 8 Jun 2022 16:42:41 -0400 Subject: [PATCH] Use github-actions as committer instead of "example" --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 7b66c00..ea279d1 100644 --- a/index.js +++ b/index.js @@ -109,9 +109,9 @@ const buildReadme = (prevReadmeContent, newReadmeContent) => { const commitReadme = async () => { // Getting config - const committerUsername = "Abhishek Naidu"; - const committerEmail = "example@gmail.com"; - const commitMessage = "Todoist updated."; + const committerUsername = "github-actions"; + const committerEmail = "github-actions@github.com"; + const commitMessage = "Update Todoist stats (automated)"; // Doing commit and push await exec("git", ["config", "--global", "user.email", committerEmail]); await exec("git", ["config", "--global", "user.name", committerUsername]);