Skip to content

Commit

Permalink
ci: create autoupdate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
backwardspy authored Jun 2, 2024
1 parent 261cae2 commit 4c80c1a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/autoupdate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
schedule:
- cron: "0 9 * * *" # renovate gets into work at 9:00 on the dot
workflow_dispatch:

name: "Auto-update Homebrew formulae"

jobs:
autoupdate:
runs-on: ubuntu-latest
steps:
- name: Check for formula updates
uses: dawidd6/action-homebrew-bump-formula@v3
with:
# PAT with only the 'public_repo' scope enabled
token: ${{secrets.AUTOUPDATE_PAT}}
tap: catppuccin/homebrew-tap
livecheck: true

0 comments on commit 4c80c1a

Please sign in to comment.