-
Notifications
You must be signed in to change notification settings - Fork 3
149 lines (144 loc) · 2.43 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
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
apidoc
argo
artifactory
autorest
aws-cdk
b3sum
bcoin
buildkit
bundletool
cadence
calicoctl
cargo-audit
cargo-bloat
cargo-c
cargo-edit
cargo-instruments
cargo-llvm-lines
cargo-outdated
cargo-watch
cdk8s
chezmoi
circleci
clair
cliclick
consul
consul-template
cubejs-cli
detekt
detox
devspace
dnscrypt-proxy
docker
docker-compose
docker-slim
doctl
envconsul
esbuild
eslint
etcd
exploitdb
fennel
firebase-cli
fuse-overlayfs
gatsby-cli
gitleaks
glooctl
gofish
golang-migrate
goreleaser
gosec
gostatic
hcloud
helm
helmfile
ircd-hybrid
jfrog-cli
just
k3d
k9s
keydb
kubeaudit
kumactl
kustomize
lazydocker
lexbor
liboqs
marked
marp-cli
mdbook
mdcat
metabase
micro
minikube
mmctl
nativefier
navi
ncc
neofetch
netlify-cli
nng
node-sass
nomad
nushell
octant
okteto
oxipng
pnpm
rollup
selene
serverless
skaffold
skopeo
starship
stress-ng
svgo
syncthing
teleport
termshark
terraform-ls
toast
traefik
vale
vercel-cli
virgil
vite
vue-cli
webpack
webtorrent-cli
whistle
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 }}