Skip to content

Enable config to be used as context manager #1606

Enable config to be used as context manager

Enable config to be used as context manager #1606

Workflow file for this run

name: Labels
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled
env:
LABELS: ${{ join( github.event.pull_request.labels.*.name, ' ' ) }}
jobs:
check-type-label:
name: reviewer label?
runs-on: ubuntu-latest
steps:
- if: "contains( env.LABELS, 'type: ' ) == false"
run: |
echo "This PR needs a reviewer to label the PR with a 'type:' label"
exit 1