Skip to content

Import Figma variables #13

Import Figma variables

Import Figma variables #13

Workflow file for this run

name: Import Figma variables
on:
workflow_dispatch:
jobs:
import:
name: Import Figma variables
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install
- name: 🛠️ Build Figma utils
run: pnpm run build
working-directory: packages/figma-utils
# we need to separately import the themes because they are all needed in different formats and selectors
- name: Import onyx variables
run: |
pnpm run @sit-onyx/figma-utils import-variables -k "${{ vars.FIGMA_FILE_KEY }}" -t "${{ secrets.FIGMA_TOKEN }}" -d "../sit-onyx/src/styles/themes" -m onyx -f CSS JSON -s ":where(:root), .onyx-theme-default" --filename ""
working-directory: packages/figma-utils
- name: Import additional onyx themes
run: |
pnpm run @sit-onyx/figma-utils import-variables -k "${{ vars.FIGMA_FILE_KEY }}" -t "${{ secrets.FIGMA_TOKEN }}" -d "../sit-onyx/src/styles/themes" -m lidl kaufland twogo -f CSS -s ":root, .onyx-theme-{mode}" --filename ""
working-directory: packages/figma-utils
- name: Import light variables
run: |
pnpm run @sit-onyx/figma-utils import-variables -k "${{ vars.FIGMA_FILE_KEY }}" -t "${{ secrets.FIGMA_TOKEN }}" -d "../sit-onyx/src/styles/themes" -m light -s ":where(:root)" --filename ""
working-directory: packages/figma-utils
- name: Import dark variables
run: |
pnpm run @sit-onyx/figma-utils import-variables -k "${{ vars.FIGMA_FILE_KEY }}" -t "${{ secrets.FIGMA_TOKEN }}" -d "../sit-onyx/src/styles/themes" -m dark -s ":where(.dark)" --filename ""
working-directory: packages/figma-utils
- name: Create pull request
uses: peter-evans/create-pull-request@v6
with:
commit-message: "feat: update Figma variables"
title: "feat: update Figma variables"
body: This is an auto-generated pull request. All Figma variables have been updated.
branch-suffix: short-commit-hash # needed to not override other pull requests created via workflows
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH_NAME: ${{ github.ref_name }}