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