From c58178dece9b3bbdea6db88ee03fc2860e267912 Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Fri, 20 Dec 2019 10:12:44 -0500 Subject: [PATCH] ci: Bump brew with personal account --- .github/workflows/workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 198fc9ff09b9..d6d10b4ad4f0 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -194,17 +194,17 @@ jobs: steps: - uses: actions/checkout@v1 - run: | - echo "https://starship-bot:$HOMEBREW_GITHUB_API_TOKEN@github.com" > ~/.git-credentials + echo "https://matchai:$HOMEBREW_GITHUB_API_TOKEN@github.com" > ~/.git-credentials git config --global credential.helper store - git config --global user.name "Starship Bot" - git config --global user.email "bot@starship.rs" + git config --global user.name "Matan Kushner" + git config --global user.email "hello@matchai.dev" cd $(brew --repo homebrew/core) git fetch origin sudo git reset --hard origin/master cd - - brew bump-formula-pr --url=https://github.com/starship/starship/archive/$(git describe --tags).tar.gz --message="Automated release pull request using continuous integration. If you have any questions, please ping `@matchai`." --no-browse -v starship --force + brew bump-formula-pr --url=https://github.com/starship/starship/archive/$(git describe --tags).tar.gz --message="Automated release pull request using continuous integration." --no-browse -v starship --force env: HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}