Fixed bug in notice-background-color-default #5
Workflow file for this run
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: TEST S2-COLORS | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches: | |
- main # only run on PRs targetting main | |
paths: | |
- 'src/tokens-studio/spectrum2-colors/**' # only run when files in this path change | |
jobs: | |
check_should_run: | |
uses: ./.github/workflows/_diff-should-run.yml | |
secrets: inherit | |
diff_test: | |
needs: [check_should_run] | |
if: ${{ needs.check_should_run.outputs.condition == 'true' }} | |
uses: ./.github/workflows/_diff-trigger-op.yml | |
with: | |
source: spectrum2-colors # the tokens-studio data we want to compare (folder in the repo) | |
branch: beta # the spectrum-tokens data we want to compare (branch of the repo) | |
test: true | |
secrets: inherit |