forked from Homebrew/homebrew-core
-
Notifications
You must be signed in to change notification settings - Fork 0
219 lines (214 loc) · 3.31 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
name: Bump formulae on schedule or request
on:
workflow_dispatch:
inputs:
formulae:
description: Custom list of formulae to livecheck and bump if outdated
required: false
schedule:
# Every day at 5am
- cron: '0 5 * * *'
env:
HOMEBREW_FORCE_HOMEBREW_ON_LINUX: 1
FORMULAE: |
ack
angular-cli
apache-archiva
apidoc
argo
artifactory
atuin
autorest
aws-cdk
b3sum
bcoin
bottom
brew-php-switcher
broot
buildkit
bundletool
cadence
calicoctl
cargo-audit
cargo-bloat
cargo-c
cargo-edit
cargo-instruments
cargo-llvm-lines
cargo-outdated
cargo-watch
cdk8s
chezmoi
chromaprint
circleci
clair
cliclick
cloudflare-wrangler
composer
consul
consul-template
crun
cubejs-cli
deno
detekt
detox
devspace
dnscrypt-proxy
docker
docker-compose
docker-slim
doctl
docuum
double-conversion
dprint
dvc
easyengine
envconsul
esbuild
eslint
etcd
ethereum
exploitdb
fennel
firebase-cli
flarectl
flux
fuse-overlayfs
futhark
gatsby-cli
git-cliff
git-delta
gitleaks
gleam
glooctl
gofish
golang-migrate
goreleaser
gosec
gostatic
gpg-tui
hcloud
helm
helmfile
htmldoc
hugo
imagemagick
imagemagick@6
imap-backup
ircd-hybrid
jenkins
jfrog-cli
jql
jsonnet
just
k3d
k9s
keptn
keydb
kubeaudit
kubecfg
kumactl
kustomize
lazydocker
lexbor
liboqs
localstack
lout
macchina
marked
marp-cli
mdbook
mdcat
meson
metabase
micro
minikube
mmctl
moto
murex
mypy
nativefier
navi
ncc
neofetch
netlify-cli
nfpm
nng
node-sass
nomad
notcurses
nushell
oauth2_proxy
oci-cli
octant
okteto
opensearch
oxipng
phoronix-test-suite
php-code-sniffer
php-cs-fixer
phpmd
phpstan
pickle
pnpm
pocsuite3
procs
protoc-gen-go-grpc
psalm
rbw
rollup
s2n
selene
serverless
skaffold
skopeo
solana
sponge
starship
stdman
stress-ng
svgo
svtplay-dl
syncthing
teleport
termshark
terraform-ls
toast
topgrade
traefik
vale
vault-cli
vercel-cli
virgil
vite
vpn-slice
vsearch
vue-cli
wasmtime
webpack
webtorrent-cli
whistle
xcbeautify
xplr
yaegi
zellij
jobs:
autobump:
if: github.repository == 'Homebrew/homebrew-core'
runs-on: ubuntu-latest
container:
image: ghcr.io/homebrew/ubuntu16.04:master
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Configure Git user
uses: Homebrew/actions/git-user-config@master
with:
username: ${{ (github.event_name == 'workflow_dispatch' && github.actor) || 'BrewTestBot' }}
- name: Bump formulae
uses: Homebrew/actions/bump-formulae@master
continue-on-error: true
with:
token: ${{ secrets.HOMEBREW_CORE_REPO_WORKFLOW_TOKEN }}
formulae: ${{ github.event.inputs.formulae || env.FORMULAE }}