From f4b1dd1fa11374cae8a696833ad9ded0767cba8f 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 10fbceee8bf28e..8c941cb2686c2f 100644 --- a/.github/actions/create-release/action.yml +++ b/.github/actions/create-release/action.yml @@ -17,6 +17,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: |