We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0674b81 commit 85f6539Copy full SHA for 85f6539
.github/workflows/ci.yaml
@@ -20,7 +20,11 @@ jobs:
20
github.repository == 'xarray-contrib/xarray-array-testing'
21
&& (github.event_name == 'push' || github.event_name == 'pull_request')
22
outputs:
23
- triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
+ triggered: |
24
+ ${{
25
+ steps.detect-trigger.outputs.trigger-found == 'true'
26
+ || contains(github.event.pull_request.labels.*.name, 'skip-ci')
27
+ }}
28
steps:
29
- uses: actions/checkout@v4
30
with:
@@ -35,9 +39,7 @@ jobs:
35
39
name: ${{ matrix.os }} py${{ matrix.python-version }}
36
40
runs-on: ${{ matrix.os }}
37
41
needs: detect-ci-trigger
38
- if: |
- needs.detect-ci-trigger.outputs.triggered == 'false'
- || contains(github.event.pull_request.labels.*.name, 'skip-ci')
42
+ if: ! needs.detect-ci-trigger.outputs.triggered
43
44
env:
45
FORCE_COLOR: 3
0 commit comments