-
Notifications
You must be signed in to change notification settings - Fork 152
49 lines (42 loc) · 1.31 KB
/
cron-update-tokens.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
name: Update palette tokens
on:
schedule:
- cron: "0 8 * * *"
jobs:
cron-update-tokens:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node
uses: ./.github/actions/node
- name: Today date
run: echo "TODAY=$(date '+%Y-%m-%d')" >> $GITHUB_ENV
- name: Setup git identity
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
- name: Update palette
run: |
yarn tokens fetch:colors
yarn tokens build
yarn tokens jest -u
git add --all
git diff-index --quiet HEAD || git commit -m "feat(tokens): update palette"
env:
FIGMA_TOKEN: ${{ secrets.FIGMA_TOKEN }}
- name: Create PR
uses: peter-evans/create-pull-request@v5
with:
base: master
branch: feat/update-palette-tokens
token: ${{ secrets.PAT }}
delete-branch: true
title: "feat(tokens): update palette tokens from figma"
body: |
- Automatically generated PR on ${{ env.TODAY }}.
- Updates palette tokens from Figma
labels: Tokens
assignees: mainframev
reviewers: mainframev
draft: false