From 3d4df8800e2546cf6d92ad825dd1d776ecf02490 Mon Sep 17 00:00:00 2001 From: William Martin Date: Wed, 6 Sep 2023 15:02:58 +0200 Subject: [PATCH] Add a test workflow for homebrew bump investigations (#7951) --- .github/workflows/homebrew.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/homebrew.yml diff --git a/.github/workflows/homebrew.yml b/.github/workflows/homebrew.yml new file mode 100644 index 000000000..9a6400f42 --- /dev/null +++ b/.github/workflows/homebrew.yml @@ -0,0 +1,22 @@ +name: homebrewbump + +permissions: + contents: write + +on: + workflow_dispatch: + +jobs: + homebrewbump: + environment: production + runs-on: ubuntu-latest + steps: + - name: Bump homebrew-core formula + uses: mislav/bump-homebrew-formula-action@v2 + with: + formula-name: gh + formula-path: Formula/g/gh.rb + tag-name: v2.34.0 + push-to: cli/homebrew-core + env: + COMMITTER_TOKEN: ${{ secrets.HOMEBREW_PR_PAT }}