From 40e80c52c2528ea3d76dc946b2d54696829953c2 Mon Sep 17 00:00:00 2001 From: Hugo Alliaume Date: Wed, 21 May 2025 17:33:21 +0200 Subject: [PATCH] =?UTF-8?q?[CI]=C2=A0Configure=20Git=20username/email=20to?= =?UTF-8?q?=20github-actions[bot]=20when=20comiting=20version=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-on-npm.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-on-npm.yaml b/.github/workflows/release-on-npm.yaml index 6169a700585..11fc7d79f2f 100644 --- a/.github/workflows/release-on-npm.yaml +++ b/.github/workflows/release-on-npm.yaml @@ -15,8 +15,8 @@ jobs: - name: Configure Git run: | - git config --global user.email "" - git config --global user.name "Symfony" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" - name: Extract version from tag run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV