Skip to content

Commit 1e84404

Browse files
committed
next attempt
1 parent 85f6539 commit 1e84404

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/ci.yaml

+3-6
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,9 @@ jobs:
1919
if: |
2020
github.repository == 'xarray-contrib/xarray-array-testing'
2121
&& (github.event_name == 'push' || github.event_name == 'pull_request')
22+
&& !contains(github.event.pull_request.labels.*.name, 'skip-ci')
2223
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 }}
2825
steps:
2926
- uses: actions/checkout@v4
3027
with:
@@ -39,7 +36,7 @@ jobs:
3936
name: ${{ matrix.os }} py${{ matrix.python-version }}
4037
runs-on: ${{ matrix.os }}
4138
needs: detect-ci-trigger
42-
if: ! needs.detect-ci-trigger.outputs.triggered
39+
if: needs.detect-ci-trigger.outputs.triggered == 'false'
4340

4441
env:
4542
FORCE_COLOR: 3

0 commit comments

Comments
 (0)