Bump xunit.runner.visualstudio from 2.5.6 to 2.5.8 #18
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: Check PR Labels | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for "do not merge" label | |
if: contains(github.event.pull_request.labels.*.name, 'do not merge') | |
run: | | |
echo "This PR should not be merged." | |
exit 1 |