[ENH, BUG] : added time_tournament_is_strongly_connected
benchmark, renamed tournament_is_strongly_connected
to is_strongly_connected
#128
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: Labels | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- labeled | |
- unlabeled | |
- synchronize | |
env: | |
LABELS: ${{ join( github.event.pull_request.labels.*.name, ' ' ) }} | |
jobs: | |
check-type-label: | |
name: core dev picked label & checked title | |
runs-on: ubuntu-latest | |
steps: | |
- if: "contains( env.LABELS, 'type: ' ) == false" | |
run: exit 1 |