Prevent merging of Pull Requests with a custom label selected on labels area.
- Fork the dont-merge repository on Github.
 - Clone your fork to your machine 
git clone [email protected]:Muhnad/dont-merge.git - Navigate into project directory 
cd dont-merge/. - Install the dependencies 
npm install. 
- Create your own GitHub app
 - Install the app on your GitHub Repositories.
 - Update the 
.envfile. - Run 
npm start 
- 
is it possible to specify custom labels that should prevent merging?
- Yes, you can add the labels you want by adding 
DONT_MERGE_LABELSto.envfile.DONT_MERGE_LABELSaccept single&multi labels.DONT_MERGE_LABELS=need workthis is single label when you select will prevent merging.DONT_MERGE_LABELS=need work,not allowedthis is multi labels. the label should be separated by a comma without any spacing. 
 - Yes, you can add the labels you want by adding 
 - 
What's the default labels?
- the default are 
don't mergeanddo not merge. 
 - the default are 
 
Notes
if you need the app run in Background just add & at the end npm start &
See docs for more info.
