summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Tay <sam.chong.tay@gmail.com>2020-07-10 19:11:18 -0700
committerGitHub <noreply@github.com>2020-07-10 19:11:18 -0700
commit3f9cc436358a3800cd6f65af1372ef31b112ae2a (patch)
tree1dee00a2cae84c62d9cd84d590359db6530b7f1c
parentc8f26f88c27fcdb8242588cd10bab3979641181b (diff)
Add github action to auto PR to homebrew-core
-rw-r--r--.github/workflows/bump_brew_formula.yml16
1 files changed, 16 insertions, 0 deletions
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 }}