-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (34 loc) · 1.16 KB
/
bump-ham-casks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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: macloggerdx, jt-bridge, remotehamradio, gridtracker, tqsl
livecheck: true
dryrun: false
bump-casks-versions:
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-versions
# Bump only these casks if outdated
cask: macloggerdx-beta
livecheck: true
dryrun: false