2020-03-24 18:50:55 +00:00
|
|
|
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"
|
2020-08-01 09:35:05 +00:00
|
|
|
# this serves as ALL check has to pass as we have actually around 40 tests in total
|
2020-08-07 07:08:23 +00:00
|
|
|
- "#status-success>=41"
|
2020-03-24 18:50:55 +00:00
|
|
|
# this is just in case since we rely on GPU tests (note: redundand to the above)
|
|
|
|
- status-success=continuous-integration/drone/pr
|
2020-08-01 09:35:05 +00:00
|
|
|
- "status-success=ci/circleci: TPU-tests"
|
2020-03-24 18:50:55 +00:00
|
|
|
# this is patter-like, unofrunatly serves as `any(...)` (note: redundand to the above)
|
2020-08-01 09:35:05 +00:00
|
|
|
#- "status-success~=^ci/circleci:"
|
2020-03-24 18:50:55 +00:00
|
|
|
# no conflict with master branch
|
|
|
|
- -conflict
|
|
|
|
# was not closed yet
|
|
|
|
- -closed
|
|
|
|
actions:
|
|
|
|
delete_head_branch: {}
|
|
|
|
merge:
|
2020-03-30 22:32:52 +00:00
|
|
|
# https://doc.mergify.io/merge-action.html#strict-merge
|
|
|
|
# (on head branch) $ git merge --no-ff base
|
|
|
|
# (on head branch) # Wait for CI to go green
|
|
|
|
# (on head branch) # Squash all commits
|
|
|
|
# (on base branch) $ git merge --ff head
|
|
|
|
strict: true
|
2020-03-24 18:50:55 +00:00
|
|
|
method: squash
|
|
|
|
comment:
|
|
|
|
message: Great job! =)
|
|
|
|
|
|
|
|
- name: warn on conflicts
|
|
|
|
conditions:
|
|
|
|
- conflict
|
|
|
|
actions:
|
|
|
|
comment:
|
|
|
|
message: This pull request is now in conflict... :(
|
2020-03-30 22:32:52 +00:00
|
|
|
|
|
|
|
- name: add core reviewer
|
|
|
|
conditions:
|
|
|
|
# number of review approvals
|
|
|
|
- "#approved-reviews-by<3"
|
|
|
|
actions:
|
|
|
|
request_reviews:
|
|
|
|
teams:
|
|
|
|
- core-contributors
|