From e67516879869e315d5c3994f50f76dfe34a49ffd Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Mon, 25 Nov 2024 17:27:02 -0700 Subject: [PATCH] ci: Configure the git user for Commitizen [skip ci] --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc6419f..9661c41 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,11 @@ jobs: with: fetch-depth: 0 + - name: Configure Git user + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + - name: Set up Python uses: actions/setup-python@v4 with: