From 9dc7fa1c81058585640e1c06d8b51f603a741c70 Mon Sep 17 00:00:00 2001 From: Yuval Shavit Date: Sun, 2 Mar 2025 00:05:12 -0500 Subject: [PATCH] use gh bot --- .github/workflows/prepare-new-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/prepare-new-release.yml b/.github/workflows/prepare-new-release.yml index 4210692..2cdabef 100644 --- a/.github/workflows/prepare-new-release.yml +++ b/.github/workflows/prepare-new-release.yml @@ -54,6 +54,9 @@ jobs: - name: Commit changes run: | set -euo pipefail + git config user.name 'github-actions[bot]' + git config user.email 'github-actions[bot]@users.noreply.github.com' + git checkout -b release-prep-${{ github.event.inputs.new_version }} git commit -am "Update version to ${{ github.event.inputs.new_version }}" git push --set-upstream origin release-prep-${{ github.event.inputs.new_version }}