We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef2ba5d commit 469e25bCopy full SHA for 469e25b
.github/workflows/ci.yaml
@@ -35,7 +35,10 @@ jobs:
35
name: ${{ matrix.os }} py${{ matrix.python-version }}
36
runs-on: ${{ matrix.os }}
37
needs: detect-ci-trigger
38
- if: needs.detect-ci-trigger.outputs.triggered == 'false'
+ if: |
39
+ needs.detect-ci-trigger.outputs.triggered == 'false'
40
+ || contains(github.event.pull_request.labels.*.name, 'skip-ci')
41
+
42
env:
43
FORCE_COLOR: 3
44
CONDA_ENV_FILE: "ci/requirements/environment.yaml"
0 commit comments