forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
150 lines (144 loc) · 2.49 KB
/
autobump.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
name: Bump casks on schedule or request
on:
workflow_dispatch:
inputs:
casks:
description: Custom list of casks to livecheck and bump if outdated
required: false
schedule:
# Every day at 5am
- cron: "0 5 * * *"
env:
CASKS: >
1password
1password-cli
alfred
alt-tab
apifox
appcleaner
arc
beeper
bettertouchtool
bike
brave-browser
burp-suite
burp-suite-professional
busycal
calibre
canva
carbon-copy-cloner
chirp
clickup
cloudnet
codeql
cog
confluent-cli
copilot-for-xcode
dbeaver-community
descript
downie
dropbox
duckduckgo
electron
eloston-chromium
figma
firefox
flipper
fmail2
foxglove-studio
gather
glyphs
google-chrome
grammarly-desktop
grandtotal
hackolade
heptabase
jdownloader
jupyterlab
libreoffice
librewolf
logseq
macupdater
metasploit
microsoft-edge
microsoft-openjdk
multiapp
netron
openlens
openshift-client
opera
opera-gx
osu
pitch
plex
plex-htpc
plex-media-server
postman
purei-play
puzzles
qownnotes
quarto
readdle-spark
reaper
rewind
rive
setapp
sf
shapr3d
sigmaos
signal
siyuan
skype
sol
spotify
standard-notes
stats
telegram
telegram-desktop
teleport-connect
thunderbird
todoist
tor-browser
trader-workstation
trainerroad
tsh
unity
uvtools
viber
visual-studio-code
vivaldi
vrew
vscodium
vuescan
warp
webcatalog
webull
whatsapp
workflowy
zed
zoom
zoom-for-it-admins
permissions:
contents: read
jobs:
autobump:
if: github.repository == 'Homebrew/homebrew-cask'
runs-on: macos-latest
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
with:
core: false
cask: true
test-bot: false
- name: Configure Git user
uses: Homebrew/actions/git-user-config@master
with:
username: ${{ (github.event_name == 'workflow_dispatch' && github.actor) || 'BrewTestBot' }}
- name: Bump casks
uses: Homebrew/actions/bump-packages@master
continue-on-error: true
with:
token: ${{ secrets.HOMEBREW_CASK_REPO_WORKFLOW_TOKEN }}
casks: ${{ github.event.inputs.casks || env.CASKS }}