From 9fdd83b6d399d54e45edfd2f4ab285b18e52903f Mon Sep 17 00:00:00 2001 From: Garulf <535299+Garulf@users.noreply.github.com> Date: Sat, 25 Nov 2023 14:30:11 -0500 Subject: [PATCH] Configure github action bot as author --- .github/workflows/on_release.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/on_release.yaml b/.github/workflows/on_release.yaml index 453c2a0..1e5ed46 100644 --- a/.github/workflows/on_release.yaml +++ b/.github/workflows/on_release.yaml @@ -11,6 +11,8 @@ jobs: run: | tag_name=$(echo "${{ github.event.release.tag_name }}" | sed 's/^v//') sed -i "s/version = .*/version = '${tag_name}'/" pyproject.toml + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config user.name "github-actions[bot]" git add pyproject.toml git commit -m "Update version to ${tag_name}" git push