-
Notifications
You must be signed in to change notification settings - Fork 24
40 lines (37 loc) · 1.18 KB
/
update-illustrations.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
name: Update Illustrations
on:
schedule:
- cron: '0 0 * * MON' # every Monday
workflow_dispatch:
env:
pr_label: "update-illustrations"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pngquant
run: sudo apt-get install -y pngquant
- name: Install imagemagick
run: sudo apt-get install -y imagemagick
- name: Today env
run: echo "TODAY=$(date '+%Y-%m-%d')" >> $GITHUB_ENV
- name: Update Illustration Tokens
run: bash .github/update-illustrations.sh ${{ env.pr_label }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.PRBOT_APP_ID }}
private_key: ${{ secrets.PRBOT_PRIVATE_KEY }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
token: ${{ steps.generate-token.outputs.token }}
labels: |
${{ env.pr_label }}
title: Design Tokens Illustrations Update on ${{ env.TODAY }}
body: ""
base: main
branch: tokens-update-illustrations