File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 20
20
github.repository == 'xarray-contrib/xarray-array-testing'
21
21
&& (github.event_name == 'push' || github.event_name == 'pull_request')
22
22
outputs :
23
- triggered : ${{ steps.detect-trigger.outputs.trigger-found }}
23
+ triggered : |
24
+ ${{
25
+ steps.detect-trigger.outputs.trigger-found == 'true'
26
+ || contains(github.event.pull_request.labels.*.name, 'skip-ci')
27
+ }}
24
28
steps :
25
29
- uses : actions/checkout@v4
26
30
with :
35
39
name : ${{ matrix.os }} py${{ matrix.python-version }}
36
40
runs-on : ${{ matrix.os }}
37
41
needs : detect-ci-trigger
38
- if : |
39
- needs.detect-ci-trigger.outputs.triggered == 'false'
40
- || contains(github.event.pull_request.labels.*.name, 'skip-ci')
42
+ if : ! needs.detect-ci-trigger.outputs.triggered
41
43
42
44
env :
43
45
FORCE_COLOR : 3
You can’t perform that action at this time.
0 commit comments