We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2bfdbe commit c1bcf2eCopy full SHA for c1bcf2e
1 file changed
.github/workflows/release-wheels.yml
@@ -1,7 +1,8 @@
1
name: Wheels
2
3
on:
4
- #pull_request:
+ pull_request:
5
+ types: [labeled]
6
workflow_dispatch:
7
inputs:
8
release:
@@ -16,6 +17,12 @@ jobs:
16
17
py-wheels-matrix:
18
name: "generate build matrix"
19
runs-on: ubuntu-latest
20
+ if: >
21
+ github.event_name == 'workflow_dispatch' ||
22
+ (
23
+ github.event_name == 'pull_request' &&
24
+ github.event.label.name == 'check-wheels'
25
+ )
26
outputs:
27
matrix: ${{ steps.make-matrix.outputs.matrix }}
28
steps:
0 commit comments