From c398878c90ec644df5d4e5f0dcb4a9892c835f5f Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Fri, 25 Oct 2019 21:21:41 +0900 Subject: [PATCH] ci: Add --global flag to git config commands --- .github/workflows/workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 61ee3c77b9ee..c73d29457b4d 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -174,9 +174,9 @@ jobs: steps: - uses: actions/checkout@v1 - run: | - git config user.email "bot@starship.rs" - git config user.name "Starship Bot" - + git config --global user.email "bot@starship.rs" + git config --global user.name "Starship Bot" + - run: | cd $(brew --repo homebrew/core) git fetch origin sudo git reset --hard origin/master