Fetch Warp tokens from Figma #2
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: Fetch Warp tokens from Figma | |
on: | |
workflow_dispatch: | |
jobs: | |
createPullRequest: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
run_install: true | |
- name: create env file | |
run: | | |
touch .env | |
echo FIGMA_TOKEN=${{ secrets.FIGMA_TOKEN }} >> .env | |
- name: Import Warp tokens from Figma | |
run: pnpm import:warp | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch-suffix: timestamp | |
commit-message: Warp tokens updates from Figma | |
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | |
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> | |
title: "Warp tokens updates from Figma" | |
body: | | |
Updates fetched from Figma | |
- Check diff under tokens folder to see what's changed | |
reviewers: imprashast,Skadefryd |