From 41d0cfe1cce641b3a35034ab327e8da54c655b1a Mon Sep 17 00:00:00 2001 From: Alin Lupascu Date: Sat, 3 Aug 2024 23:09:17 -0600 Subject: [PATCH] Create brew-bump.yml --- .github/workflows/brew-bump.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/brew-bump.yml diff --git a/.github/workflows/brew-bump.yml b/.github/workflows/brew-bump.yml new file mode 100644 index 0000000..63feb5d --- /dev/null +++ b/.github/workflows/brew-bump.yml @@ -0,0 +1,22 @@ +name: bump-ham-casks +on: + # schedule: + # # Time is UTC, so below is running everyday at 8AM and 8PM PST + # - cron: '0 4,16 * * *' + # # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + bump-casks: + runs-on: macos-latest + steps: + - uses: macauley/action-homebrew-bump-cask@v1 + with: + # Required, custom GitHub access token with only the 'public_repo' scope enabled + token: ${{secrets.BUMP_CASK_TOKEN}} + # Bump all outdated casks in this tap + tap: Homebrew/homebrew-cask + # Bump only these casks if outdated + cask: pearcleaner + livecheck: false + dryrun: false