From c880a2530a84f9299137af9b93265435d735d47d Mon Sep 17 00:00:00 2001 From: Sammy Hori Date: Fri, 18 Oct 2024 22:32:33 +0100 Subject: [PATCH] Change name and email on build.yml This ensures that the GitHub Action commit is not attributed to MunGell when they did not induce it --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9ede61e..75e1825 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,8 @@ jobs: run: node .github/scripts/build.js - name: Commit run: | - git config --global user.name 'Shmavon Gazanchyan' - git config --global user.email 'MunGell@users.noreply.github.com' + git config --global user.name 'Github Action' + git config --global user.email 'github-action@github.com' git commit -am "Update README.md" git push +