Skip to content

Commit fd08006

Browse files
committed
Create github action to bump homebrew tap
1 parent 6476b3d commit fd08006

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Bump Homebrew formula
2+
3+
# Controls when the action will run. Workflow runs when manually triggered using the UI
4+
# or API.
5+
on:
6+
workflow_dispatch:
7+
8+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
9+
jobs:
10+
# This workflow contains a single job called "greet"
11+
run:
12+
# The type of runner that the job will run on
13+
runs-on: ubuntu-latest
14+
15+
# Steps represent a sequence of tasks that will be executed as part of the job
16+
steps:
17+
- name: Update Homebrew formula
18+
uses: dawidd6/action-homebrew-bump-formula@v3
19+
with:
20+
# Required, custom GitHub access token with the 'public_repo' and 'workflow' scopes
21+
token: ${{secrets.HOME_BREW_PAT}}
22+
# Optional, will create tap repo fork in organization
23+
org: SpectoLabs
24+
tap: SpectoLabs/homebrew-tap
25+
# Formula name, required
26+
formula: Hoverfly

0 commit comments

Comments
 (0)