From bbb700cf4372baf6c85a4506f3af7fab2c084310 Mon Sep 17 00:00:00 2001 From: Camden Narzt Date: Thu, 1 Aug 2024 20:56:54 -0600 Subject: [PATCH] Redo "simplify git user/email" This reverts commit 0540773239cedaaa58191a453a765607cb2a44a3. --- .github/workflows/node.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index c479914..163ee82 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -64,10 +64,10 @@ jobs: needs: [ test ] runs-on: ubuntu-latest env: - GIT_AUTHOR_NAME: github-actions[bot] - GIT_AUTHOR_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com - GIT_COMMITTER_NAME: github-actions[bot] - GIT_COMMITTER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com + GIT_AUTHOR_NAME: github-actions + GIT_AUTHOR_EMAIL: github-actions@github.com + GIT_COMMITTER_NAME: github-actions + GIT_COMMITTER_EMAIL: github-actions@github.com steps: - uses: actions/checkout@v4 with: