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 8cd1817 commit 7f70795Copy full SHA for 7f70795
.github/workflows/coder.yaml
@@ -35,6 +35,7 @@ jobs:
35
outputs:
36
docs-only: ${{ steps.filter.outputs.docs_count == steps.filter.outputs.all_count }}
37
sh: ${{ steps.filter.outputs.sh }}
38
+ ts: ${{ steps.filter.outputs.ts }}
39
steps:
40
- uses: actions/checkout@v3
41
# For pull requests it's not necessary to checkout the code
@@ -50,6 +51,11 @@ jobs:
50
51
# - '.github/**'
52
sh:
53
- "**.sh"
54
+ ts:
55
+ - "**.tsx?"
56
+ - "**.jsx?"
57
+ - "**.lock"
58
+ - "**.json"
59
- id: debug
60
run: |
61
echo "${{ toJSON(steps.filter )}}"
@@ -606,7 +612,9 @@ jobs:
606
612
chromatic:
607
613
# REMARK: this is only used to build storybook and deploy it to Chromatic.
608
614
runs-on: ubuntu-latest
609
-
615
+ needs:
616
+ - changes
617
+ if: needs.changes.outputs.ts == 'true'
610
618
611
619
620
with:
0 commit comments