From 8c85496a9553345c66510f7cf7ed9a6a1b6f2f39 Mon Sep 17 00:00:00 2001 From: Adrian Ho Date: Wed, 7 May 2025 19:57:45 +0800 Subject: [PATCH] [NEW] autobump workflow --- .github/workflows/autobump.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/autobump.yml diff --git a/.github/workflows/autobump.yml b/.github/workflows/autobump.yml new file mode 100644 index 0000000..7706001 --- /dev/null +++ b/.github/workflows/autobump.yml @@ -0,0 +1,28 @@ +name: "Autobump specific formulae" +on: + schedule: + - cron: "15 2-23/4 * * *" + +jobs: + autobump: + runs-on: ubuntu-latest + steps: + - name: Update Homebrew formula + uses: dawidd6/action-homebrew-bump-formula@v4 + with: + # Required, custom personal GitHub access token with only the 'public_repo' scope enabled + token: ${{secrets.AUTOBUMP_TOKEN}} + # Optional, will commit with this user name + user_name: gromgit + # Optional, will commit with this user email + user_email: the.gromgit@gmail.com + # Optional, will create tap repo fork in organization + # org: ORG + # Bump all outdated formulae in this tap + tap: gromgit/fuse + # Bump only these formulae if outdated + # formula: mint-lang,vlang-weekly + # Optional, if don't want to check for already open PRs + force: false # true + # Need to set this input if want to use `brew livecheck` + livecheck: true