File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments