From 3f9cc436358a3800cd6f65af1372ef31b112ae2a Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Fri, 10 Jul 2020 19:11:18 -0700 Subject: Add github action to auto PR to homebrew-core --- .github/workflows/bump_brew_formula.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/bump_brew_formula.yml diff --git a/.github/workflows/bump_brew_formula.yml b/.github/workflows/bump_brew_formula.yml new file mode 100644 index 0000000..902ecb2 --- /dev/null +++ b/.github/workflows/bump_brew_formula.yml @@ -0,0 +1,16 @@ +name: Release to homebrew core + +on: + push: + tags: 'v*' + +jobs: + homebrew: + name: Bump Homebrew formula + runs-on: ubuntu-latest + steps: + - uses: mislav/bump-homebrew-formula-action@v1 + with: + formula-name: so + env: + COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }} -- cgit v1.2.3