We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c68f82 commit 42e653cCopy full SHA for 42e653c
.github/workflows/sync-figma-to-tokens.yml
@@ -5,7 +5,12 @@ on:
5
file_key:
6
description: 'The file key of the Figma file to be updated'
7
required: true
8
-
+ branch:
9
+ type: choice
10
+ description: Which branch to update
11
+ options:
12
+ - design-tokens-alpha
13
+ - design-tokens
14
jobs:
15
sync-figma-to-tokens:
16
runs-on: ubuntu-latest
@@ -40,5 +45,5 @@ jobs:
40
45
commit-message: Update tokens from Figma
41
46
title: Update tokens from Figma
42
47
body: 'Update tokens from Figma from file: https://www.figma.com/file/${{ github.event.inputs.file_key }}'
43
- base: design-tokens
48
+ base: ${{ github.event.inputs.branch }}
44
49
branch: update-tokens
0 commit comments