We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 897b201 commit ee5f7deCopy full SHA for ee5f7de
1 file changed
.github/workflows/ci.yaml
@@ -25,7 +25,7 @@ jobs:
25
permissions:
26
pull-requests: read
27
outputs:
28
- runnable: ${{ steps.filter.outputs.runnable }}
+ runnable: ${{ fromJSON(steps.filter.outputs.all_count) > fromJSON(steps.filter.outputs.workflows_count) }}
29
steps:
30
- uses: actions/checkout@v6
31
# Use this action, rather than a file filter so that we can make this
@@ -36,10 +36,10 @@ jobs:
36
id: filter
37
with:
38
filters: |
39
- runnable:
+ all:
40
- '**'
41
- - '!.github/workflows/**'
42
-
+ workflows:
+ - '.github/workflows/**'
43
# detect whether or note we should run "bulk" (non-handwritten) unit tests
44
bulk-filter:
45
needs: filter
0 commit comments