Add C3ID implementation #56
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: Check no-merge label | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
- unlabeled | |
jobs: | |
check-no-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fail if PR is labeled no-merge | |
if: contains(github.event.pull_request.labels.*.name, 'no-merge') | |
run: | | |
echo "This PR is labeled no-merge and should not be merged." | |
exit 1 |