From 3e091879dbdd919e22878851f9a784dc5f3f1c72 Mon Sep 17 00:00:00 2001 From: chrysle Date: Wed, 3 Jan 2024 14:24:22 +0100 Subject: [PATCH] Fix "Bump changelog on release" GH Action --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e42b388d7b..7609ef28d1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -138,7 +138,7 @@ jobs: run: echo -e "## dev\n\n## $RELEASE_VERSION\n$(tail -n +2 CHANGELOG.md)" > CHANGELOG.md - name: Commit and push change run: | - git config --global user.name 'Github Actions' - git config --global user.email 'gh-action@users.noreply.github.com' + git config --global user.name 'chrysle' + git config --global user.email '96722107+chrysle@users.noreply.github.com' git commit -am "Bump changelog for $RELEASE_VERSION" git push origin HEAD:main