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 60dfe60 commit 4c29b50Copy full SHA for 4c29b50
.github/workflows/python_wheel_build.yml
@@ -15,7 +15,10 @@ on:
15
16
jobs:
17
build-wheels:
18
- if: contains(github.event.pull_request.labels.*.name, 'build-python-wheels')
+ if: |
19
+ github.event_name == 'schedule' ||
20
+ github.event_name == 'workflow_dispatch' ||
21
+ contains(github.event.pull_request.labels.*.name, 'build-python-wheels')
22
runs-on: ubuntu-latest
23
strategy:
24
matrix:
0 commit comments