Sync Icons #329
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync Icons | |
on: | |
schedule: | |
- cron: 0 0 * * 2,4,6 | |
workflow_dispatch: | |
jobs: | |
sync: | |
name: Sync Icons | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Install Packages | |
run: npm ci | |
- name: Download SVG Files | |
run: npm run src:download | |
env: | |
FIGMA_TOKEN: ${{ secrets.FIGMA_TOKEN }} | |
FIGMA_FILE: ${{ secrets.FIGMA_FILE }} | |
FIGMA_PAGE: ${{ secrets.FIGMA_PAGE }} | |
- name: Create TS/JS Files | |
run: npm run src:icons | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }} | |
author: 'gravity-ui-bot <[email protected]>' | |
committer: 'gravity-ui-bot <[email protected]>' | |
commit-message: 'feat: sync icons' | |
branch: sync-icons | |
delete-branch: true | |
reviewers: amje | |
title: 'feat: sync icons' | |
body: '' | |