Auto-update Homebrew formulae #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |