-
Notifications
You must be signed in to change notification settings - Fork 9
61 lines (50 loc) · 1.36 KB
/
main.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
name: CI
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: {}
jobs:
casks:
name: Bump Casks in parallel
if: github.repository == 'brewforge/homebrew-chinese'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
# checkout myself.
- uses: actions/checkout@v3
- name: Homebrew env
uses: ./.github/actions/homebrew-env
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Bump casks
uses: ./.github/actions/bump-casks
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
formulas:
name: Bump Formulas in parallel
if: github.repository == 'brewforge/homebrew-chinese'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
# checkout myself.
- uses: actions/checkout@v3
- name: Homebrew env
uses: ./.github/actions/homebrew-env
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Bump formulas
uses: ./.github/actions/bump-formulas
with:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}