Skip to content

Commit

Permalink
Add brew auto update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Feb 15, 2024
1 parent 6d2f880 commit a999bc2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/autobump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
schedule:
# Run every hour.
- cron: "0 * * * *"
workflow_dispatch:


jobs:
autobump:
if: github.repository == 'Goooler/homebrew-repo'
runs-on: macos-latest
steps:
- uses: Homebrew/actions/setup-homebrew@master
- uses: Homebrew/actions/git-user-config@master
with:
username: 'BrewBot'
- uses: Homebrew/actions/bump-packages@master
continue-on-error: true
with:
token: ${{ secrets.GITHUB_TOKEN }}
formulae: |
string-res-exporter

0 comments on commit a999bc2

Please sign in to comment.