Wheel build on wheel change pr #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test wheel builds | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
# Above are the defaults for the PR trigger, below are our insertions. | |
# Trigger on 'labeled' so we catch the initial manual labelling event. | |
- labeled | |
concurrency: | |
group: ${{ github.repository }}-${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
test-wheels: | |
# if: ${{ contains(github.event.pull_request.labels.*.name, 'ci: test wheels') }} | |
name: Build | |
uses: './.github/workflows/wheels-build.yml' | |
with: | |
default-action: "build" | |
show-labels: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "${{ toJSON(github.event.pull_request.labels.*.name) }}" |