Delete work to your own beat blog post #8966
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: Prevent Merges | |
on: | |
pull_request: | |
types: [ unlabeled, labeled, opened, synchronize , reopened] | |
jobs: | |
build: | |
if: contains(github.event.pull_request.labels.*.name, 'Do Not Merge' ) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Raise an Error | |
run: exit 1 |