forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (63 loc) · 2.28 KB
/
google-fonts.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
name: Google Fonts
on:
push:
branches:
- debug-google-fonts
schedule:
- cron: "0 0 * * 0" # weekly
workflow_dispatch:
jobs:
google-fonts:
name: ${{ matrix.mode }}
if: github.repository == 'Homebrew/homebrew-cask'
runs-on: ubuntu-latest
strategy:
matrix:
include:
- noun: addition
mode: add
- noun: update
mode: update
- noun: deletion
mode: delete
steps:
- name: Checkout homebrew/cask-fonts
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Checkout google/fonts
uses: actions/checkout@v4
with:
repository: google/fonts
path: vendor/google-fonts
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python packages
run: pip3 install gftools html2text jinja2 protobuf
- name: Configure Git user
id: git-user-config
uses: Homebrew/actions/git-user-config@master
with:
username: ${{ (github.event_name == 'workflow_dispatch' && github.actor) || 'BrewTestBot' }}
- name: Set up commit signing
uses: Homebrew/actions/setup-commit-signing@master
with:
signing_key: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY }}
- name: Import Google Fonts
run: ./developer/bin/import_google_fonts vendor/google-fonts ${{ matrix.mode }}
- name: Create pull request with updated files
run: |
set -euo pipefail
if ! git diff --stat --exit-code
then
git checkout -b "auto-${{ matrix.mode }}-google-fonts"
git commit -am "Update Google Fonts" -m "This pull request was created automatically by the [\`google-fonts\`](https://github.com/Homebrew/homebrew-cask/blob/master/.github/workflows/google-fonts.yml) workflow."
gh pr create --head "auto-${{ matrix.mode }}-google-fonts"
fi
env:
GIT_COMMITTER_NAME: ${{ steps.git-user-config.outputs.name }}
GIT_COMMITTER_EMAIL: ${{ steps.git-user-config.outputs.email }}
HOMEBREW_GPG_PASSPHRASE: ${{ secrets.BREWTESTBOT_GPG_SIGNING_SUBKEY_PASSPHRASE }}