From 903bf269e2014fd7091f2075748f7f3329eff7ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Bj=C3=A4reholt?= Date: Fri, 9 Aug 2024 03:01:13 +0200 Subject: [PATCH] ci: fixed github-actions git user details for version bump commits --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 89ae29ce..f1fb8de2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,8 @@ jobs: poetry version $VERSION - name: Commit version bump run: | + git config --global user.name github-actions + git config --global user.email github-actions@github.com if git diff --quiet; then echo "No changes to commit" else