-
Notifications
You must be signed in to change notification settings - Fork 9
92 lines (72 loc) · 2.15 KB
/
schedule.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
name: schedule
on:
# pull_request:
# branches: [main]
push:
branches: [fix-*]
schedule:
# run every 12 hours
# - cron: "20 */12 * * *"
# Every day at 6am
- cron: "0 6 * * *"
# allow run manually
workflow_dispatch:
permissions: write-all
jobs:
casks:
name: Bump Casks in parallel
if: github.repository == 'brewforge/homebrew-chinese'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
- uses: actions/checkout@v3
- name: Homebrew env
uses: ./.github/actions/homebrew-env
- name: Brew Tap
uses: ./.github/actions/brew-tap
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
- name: Bump casks
uses: ./.github/actions/bump-casks
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
formulas:
name: Bump Formulas in parallel
if: github.repository == 'brewforge/homebrew-chinese'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
- uses: actions/checkout@v3
- name: Homebrew env
uses: ./.github/actions/homebrew-env
- name: Brew Tap
uses: ./.github/actions/brew-tap
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
- name: Bump formulas
uses: ./.github/actions/bump-formulas
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
formulas-linuxbrew:
name: Bump Formulas in parallel (Linuxbrew)
if: github.repository == 'brewforge/homebrew-chinese'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Linuxbrew env
uses: ./.github/actions/linuxbrew-env
- name: Brew Tap
uses: ./.github/actions/brew-tap
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
- name: Bump formulas
uses: ./.github/actions/bump-formulas
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}