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.
2 parents 7b6f325 + 2c602e1 commit fd45992Copy full SHA for fd45992
.github/workflows/cibuildwheel.yml
@@ -20,12 +20,14 @@ on:
20
jobs:
21
build_wheels:
22
if: |
23
- github.event.action == 'push' ||
24
- (
25
- github.event.action == 'labeled' &&
26
- github.event.label.name == 'Run cibuildwheel'
27
- ) ||
28
- contains(github.event.pull_request.labels.*.name, 'Run cibuildwheel')
+ github.event_name == 'push' ||
+ github.event_name == 'pull_request' && (
+ (
+ github.event.action == 'labeled' &&
+ github.event.label.name == 'Run cibuildwheel'
+ ) ||
29
+ contains(github.event.pull_request.labels.*.name, 'Run cibuildwheel')
30
+ )
31
name: Build wheels on ${{ matrix.os }}
32
runs-on: ${{ matrix.os }}
33
env:
0 commit comments