Mergify: configuration update (#1200)

* Mergify: configuration update

* Update .mergify.yml

* Update .mergify.yml

* Update .mergify.yml
This commit is contained in:
Jirka Borovec 2020-03-24 19:50:55 +01:00 committed by GitHub
parent 38b63f95af
commit 5917e6b138
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

36
.mergify.yml Normal file
View File

@ -0,0 +1,36 @@
pull_request_rules:
- name: Automatic merge on approval
conditions:
- base=master
# number of review approvals
- "#approved-reviews-by>=3"
# no waiting or assigned review
- "#review-requested=0"
# no requested chnages from any reviewer
- "#changes-requested-reviews-by=0"
# this serves as ALL check has to pass as we have actually 27 tests in total
- "#status-success=27"
# this is just in case since we rely on GPU tests (note: redundand to the above)
- status-success=continuous-integration/drone/pr
# this is patter-like, unofrunatly serves as `any(...)` (note: redundand to the above)
- "status-success~=^ci/circleci:"
# no conflict with master branch
- -conflict
# was not closed yet
- -closed
actions:
delete_head_branch: {}
merge:
strict: true # https://doc.mergify.io/merge-action.html#strict-merge
strict_method: rebase
method: squash
comment:
message: Great job! =)
- name: warn on conflicts
conditions:
- conflict
actions:
comment:
message: This pull request is now in conflict... :(