From 27447915e72943b4e84697c91db7f7d4828e5c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Burzy=C5=84ski?= Date: Thu, 15 May 2025 10:30:26 +0200 Subject: [PATCH] Setup Git user in `release-pr` workflow --- .github/workflows/release-pr.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index 35e6691e..1d96513e 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -69,6 +69,11 @@ jobs: - name: Build run: yarn build + - name: Setup Git user + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + - name: Release snapshot version run: yarn run release:pr