From c6992021211a3944ca22ed0f6487f535bc118e9e Mon Sep 17 00:00:00 2001 From: Matthew Turney Date: Sun, 17 Dec 2023 01:51:49 +0000 Subject: [PATCH] configure git user for commits --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09f43e6..fb07f26 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,10 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v4 + - name: Configure git author + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - name: Setup Node.js uses: actions/setup-node@v4 with: