Skip to content

Commit

Permalink
fix(mergify): use queue instead of merge (#1923)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpabloprado authored Jan 20, 2022
1 parent 5164c16 commit 678ed95
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
queue_rules:
- name: default
conditions:
- status-success=build
- status-success=continuous-integration/travis-ci/pr
- status-failure=build

pull_request_rules:
- name: Automatically merge on CI success and review
conditions:
Expand All @@ -6,9 +13,9 @@ pull_request_rules:
- "label=ready to merge"
- "approved-reviews-by=@oss-approvers"
actions:
merge:
queue:
method: squash
strict: smart
name: default
label:
add: ["auto merged"]
- name: Automatically merge release branch changes on CI success and release manager review
Expand All @@ -18,9 +25,9 @@ pull_request_rules:
- "label=ready to merge"
- "approved-reviews-by=@release-managers"
actions:
merge:
queue:
method: squash
strict: smart
name: default
label:
add: ["auto merged"]
# This rule exists to handle release branches that are still building using Travis CI instead of
Expand All @@ -32,9 +39,9 @@ pull_request_rules:
- "label=ready to merge"
- "approved-reviews-by=@release-managers"
actions:
merge:
queue:
method: squash
strict: smart
name: default
label:
add: ["auto merged"]
- name: Automatically merge PRs from maintainers on CI success and review
Expand All @@ -44,9 +51,9 @@ pull_request_rules:
- "label=ready to merge"
- "author=@oss-approvers"
actions:
merge:
queue:
method: squash
strict: smart
name: default
label:
add: ["auto merged"]
- name: Automatically merge autobump PRs on CI success
Expand All @@ -56,9 +63,9 @@ pull_request_rules:
- "label~=autobump-*"
- "author:spinnakerbot"
actions:
merge:
queue:
method: squash
strict: smart
name: default
label:
add: ["auto merged"]
- name: Request reviews for autobump PRs on CI failure
Expand Down

0 comments on commit 678ed95

Please sign in to comment.