From 3a0f52940f3eb3312e94bf39e0d0cb8494a296fd Mon Sep 17 00:00:00 2001 From: streetturtle Date: Tue, 5 Sep 2023 22:26:11 -0400 Subject: [PATCH] Create homebrew-cask-updates.yml --- .github/workflows/homebrew-cask-updates.yml | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/homebrew-cask-updates.yml diff --git a/.github/workflows/homebrew-cask-updates.yml b/.github/workflows/homebrew-cask-updates.yml new file mode 100644 index 0000000..9583355 --- /dev/null +++ b/.github/workflows/homebrew-cask-updates.yml @@ -0,0 +1,23 @@ +name: Homebrew cask updates + +on: + release: + types: [published] + # Manual trigger from the UI + workflow_dispatch: + +jobs: + bump-casks: + runs-on: macos-latest + steps: + - name: Publish release + uses: macauley/action-homebrew-bump-cask@v1 + with: + # Required, custom GitHub access token with only the 'public_repo' scope enabled + token: ${{ secrets.HOMEBREW_PULLBAR_PUBLISH_TOKEN }} + # Bump all outdated casks in this tap + tap: menubar-apps/homebrew-menubar-apps + # Bump only these casks if outdated + cask: pullbar + livecheck: true + dryrun: false