Skip to content

Commit

Permalink
Merge pull request #5132 from rtfd/humitos/mergeable-probot
Browse files Browse the repository at this point in the history
Configuration file for ProBot Mergeable Bot
  • Loading branch information
ericholscher authored Jan 21, 2019
2 parents eb6a673 + 0c48457 commit cb0dedf
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/mergeable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# ProBot Mergeable Bot
# https://github.com/jusx/mergeable

mergeable:
pull_requests:
approvals:
# Minimum of approvals needed.
min: 1
message: 'The PR must have a minimum of 1 approvals.'

description:
no_empty:
# Do not allow empty descriptions on PR.
enabled: false
message: 'Description can not be empty.'

must_exclude:
# Do not allow 'DO NOT MERGE' phrase on PR's description.
regex: 'DO NOT MERGE'
message: 'Description says that the PR should not be merged yet.'

# Do not allow 'WIP' on PR's title.
title: 'WIP'

label:
# Do not allow PR with label 'PR: work in progress'
must_exclude: 'PR: work in progress'
message: 'This PR is work in progress.'

0 comments on commit cb0dedf

Please sign in to comment.