forked from coderabbitai/git-worktree-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (23 loc) · 786 Bytes
/
homebrew.yml
File metadata and controls
27 lines (23 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Update Homebrew Formula
on:
release:
types: [published]
permissions: read-all
jobs:
homebrew:
name: Bump Homebrew formula
runs-on: ubuntu-latest
if: ${{ !github.event.release.prerelease }}
steps:
- uses: mislav/bump-homebrew-formula-action@56a283fa15557e9abaa4bdb63b8212abc68e655c # v3
with:
formula-name: git-gtr
formula-path: Formula/git-gtr.rb
homebrew-tap: coderabbitai/homebrew-tap
tag-name: ${{ github.event.release.tag_name }}
create-pullrequest: false
commit-message: |
{{formulaName}} {{version}}
Automated update from https://github.com/coderabbitai/git-worktree-runner
env:
COMMITTER_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}