temporarily suspend all mergify rules (#5112)
This commit is contained in:
parent
5119013c81
commit
5bae6398ec
112
.mergify.yml
112
.mergify.yml
|
@ -12,59 +12,59 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
pull_request_rules:
|
#pull_request_rules:
|
||||||
|
#
|
||||||
- name: Automatic merge on approval
|
# - name: Automatic merge on approval
|
||||||
conditions:
|
# conditions:
|
||||||
- base=master
|
# - base=master
|
||||||
# number of review approvals
|
# # number of review approvals
|
||||||
- "#approved-reviews-by>=3"
|
# - "#approved-reviews-by>=3"
|
||||||
# no waiting or assigned review
|
# # no waiting or assigned review
|
||||||
- "#review-requested=0"
|
# - "#review-requested=0"
|
||||||
# no requested chnages from any reviewer
|
# # no requested chnages from any reviewer
|
||||||
- "#changes-requested-reviews-by=0"
|
# - "#changes-requested-reviews-by=0"
|
||||||
# this serves as ALL check has to pass as we have actually around 40 tests in total
|
# # this serves as ALL check has to pass as we have actually around 40 tests in total
|
||||||
- "#status-success>=54"
|
# - "#status-success>=54"
|
||||||
# this is just in case since we rely on GPU tests (note: redundand to the above)
|
# # this is just in case since we rely on GPU tests (note: redundand to the above)
|
||||||
- status-success=continuous-integration/drone/pr
|
# - status-success=continuous-integration/drone/pr
|
||||||
- "status-success=ci/circleci: TPU-tests"
|
# - "status-success=ci/circleci: TPU-tests"
|
||||||
# this is patter-like, unofrunatly serves as `any(...)` (note: redundand to the above)
|
# # this is patter-like, unofrunatly serves as `any(...)` (note: redundand to the above)
|
||||||
#- "status-success~=^ci/circleci:"
|
# #- "status-success~=^ci/circleci:"
|
||||||
# no conflict with master branch
|
# # no conflict with master branch
|
||||||
- -conflict
|
# - -conflict
|
||||||
# was not closed yet
|
# # was not closed yet
|
||||||
- -closed
|
# - -closed
|
||||||
# filter-out GH draft PRs
|
# # filter-out GH draft PRs
|
||||||
- -draft
|
# - -draft
|
||||||
actions:
|
# actions:
|
||||||
delete_head_branch: {}
|
# delete_head_branch: {}
|
||||||
merge:
|
# merge:
|
||||||
# https://doc.mergify.io/merge-action.html#strict-merge
|
# # https://doc.mergify.io/merge-action.html#strict-merge
|
||||||
# (on head branch) $ git merge --no-ff base
|
# # (on head branch) $ git merge --no-ff base
|
||||||
# (on head branch) # Wait for CI to go green
|
# # (on head branch) # Wait for CI to go green
|
||||||
# (on head branch) # Squash all commits
|
# # (on head branch) # Squash all commits
|
||||||
# (on base branch) $ git merge --ff head
|
# # (on base branch) $ git merge --ff head
|
||||||
strict: true
|
# strict: true
|
||||||
method: squash
|
# method: squash
|
||||||
comment:
|
# comment:
|
||||||
message: Great job! =)
|
# message: Great job! =)
|
||||||
|
#
|
||||||
- name: warn on conflicts
|
# - name: warn on conflicts
|
||||||
conditions:
|
# conditions:
|
||||||
- conflict
|
# - conflict
|
||||||
# filter-out GH draft PRs
|
# # filter-out GH draft PRs
|
||||||
- -draft
|
# - -draft
|
||||||
actions:
|
# actions:
|
||||||
comment:
|
# comment:
|
||||||
message: This pull request is now in conflict... :(
|
# message: This pull request is now in conflict... :(
|
||||||
|
#
|
||||||
- name: add core reviewer
|
# - name: add core reviewer
|
||||||
conditions:
|
# conditions:
|
||||||
# filter-out GH draft PRs
|
# # filter-out GH draft PRs
|
||||||
- -draft
|
# - -draft
|
||||||
# number of review approvals
|
# # number of review approvals
|
||||||
- "#approved-reviews-by<3"
|
# - "#approved-reviews-by<3"
|
||||||
actions:
|
# actions:
|
||||||
request_reviews:
|
# request_reviews:
|
||||||
teams:
|
# teams:
|
||||||
- core-contributors
|
# - core-contributors
|
||||||
|
|
Loading…
Reference in New Issue