Bump formulae on schedule or request #1342
This file contains hidden or 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
| name: Bump formulae on schedule or request | |
| on: | |
| schedule: | |
| # Every day at 5am | |
| - cron: "0 5 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| homebrew: | |
| name: Bump Homebrew formula | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: dawidd6/action-homebrew-bump-formula@v7 | |
| with: | |
| token: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }} | |
| tap: miles170/homebrew-emacs | |
| formula: emacs | |
| livecheck: true |