-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ADMSK\AVROGAL1
committed
Mar 3, 2021
1 parent
dcb66aa
commit 797c5a6
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
pull_request_rules: | ||
- name: automatic merge on CI success require review | ||
conditions: | ||
- status-success=Travis CI - Pull Request | ||
- "#approved-reviews-by>=1" | ||
- "#changes-requested-reviews-by=0" | ||
- label!=block-merge | ||
actions: | ||
label: | ||
add: | ||
- github-actions | ||
merge: | ||
method: squash | ||
strict: smart | ||
|
||
# if there is a conflict in a backport PR, ping the author to send a proper backport PR | ||
- name: ping author on conflicts | ||
conditions: | ||
- conflict | ||
actions: | ||
comment: | ||
message: This pull request has merge conflicts that must be resolved before it can be merged. @{{author}} please rebase it. https://rook.io/docs/rook/master/development-flow.html#updating-your-fork | ||
|
||
# automerge on master only under certain strict conditions | ||
- name: automerge merge master with specific label and approvals with code change | ||
conditions: | ||
- author=mergify[bot] | ||
- base=master | ||
- "#approved-reviews-by>=1" | ||
- "#changes-requested-reviews-by=0" | ||
- label!=do-not-merge | ||
- label=ready-to-merge | ||
actions: | ||
merge: | ||
method: merge | ||
strict: false | ||
dismiss_reviews: { } | ||
delete_head_branch: { } | ||
|
||
- name: automatic merge on CI success for TemplateControl | ||
conditions: | ||
- status-success=Travis CI - Pull Request | ||
- label=merge-when-green | ||
- label!=block-merge | ||
actions: | ||
merge: | ||
method: squash | ||
strict: smart | ||
|
||
- name: delete branch after merge | ||
conditions: | ||
- merged | ||
actions: | ||
delete_head_branch: { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters