From 1b891357b2f1995f2344cc991be423ca66fa6770 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Tue, 18 Jun 2024 16:51:54 +0100 Subject: [PATCH] [LOCAL] Configure git user before attempting to publish a release (#45039) --- .github/actions/create-release/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/create-release/action.yml b/.github/actions/create-release/action.yml index 34480c73841..1fdbef8663a 100644 --- a/.github/actions/create-release/action.yml +++ b/.github/actions/create-release/action.yml @@ -20,6 +20,11 @@ runs: - name: Yarn install shell: bash run: yarn install --non-interactive + - name: Configure Git + shell: bash + run: | + git config --local user.email "bot@reactnative.dev" + git config --local user.name "React Native Bot" - name: Creating release commit shell: bash run: |