From 7c9d7db2ee8e8e7ce7e6b6160053465249deda3b Mon Sep 17 00:00:00 2001 From: szander Date: Mon, 14 Oct 2024 12:50:31 +0200 Subject: [PATCH] add git config for bump version --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f6f6ef8..6070dd0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,10 @@ jobs: run: npm install - name: Bump version and generate changelog - run: npx standard-version + run: | + git config --global user.name 'github-actions[bot]' + git config --global user.email 'github-actions[bot]@users.noreply.github.com' + npx standard-version - name: Commit and push changes run: |