Sync Figma variables to tokens #16
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 Figma variables to tokens | |
on: | |
workflow_dispatch: | |
inputs: | |
file_key: | |
description: 'The file key of the Figma file to be updated' | |
required: true | |
branch: | |
type: choice | |
description: Which branch to update | |
options: | |
- design-tokens-alpha | |
- design-tokens | |
jobs: | |
sync-figma-to-tokens: | |
runs-on: ubuntu-latest | |
permissions: | |
# Need to be able to create new branches and commits | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.18.0' | |
- name: Set NPM version | |
run: npm install -g [email protected] | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: yarn install | |
- name: Sync variables in Figma file to tokens | |
run: yarn sync-figma-to-tokens -- --output tokens | |
env: | |
FILE_KEY: ${{ github.event.inputs.file_key }} | |
PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_ACTION_VARIABLES_SYNC_FIGMA_TOKEN }} | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: Update tokens from Figma | |
title: Update tokens from Figma | |
body: 'Update tokens from Figma from file: https://www.figma.com/file/${{ github.event.inputs.file_key }}' | |
base: ${{ github.event.inputs.branch }} | |
branch: update-tokens |