We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ab4fbb commit 67e1c3cCopy full SHA for 67e1c3c
.github/mergify.yml
@@ -59,3 +59,17 @@ pull_request_rules:
59
workflow:
60
dispatch:
61
- workflow: ci-testing-deploy.yml
62
+
63
+ - name: Automatically add PR to queue if it meets the conditions
64
+ conditions:
65
+ - "label=🤖-automerge" # Only queue PRs with this label
66
+ - "label!=🤖-do-not-merge" # Do not queue PRs with this label
67
+ - "base=master"
68
+ - "-draft" # PR is not in draft state
69
+ - "-conflict" # PR has no conflicts
70
+ - "#approved-reviews-by>=2" # Requires 2 approvals
71
+ - "#changes-requested-reviews-by=0" # No requested changes
72
+ - "#review-threads-unresolved=0" # All review threads resolved
73
+ actions:
74
+ queue:
75
+ name: default
0 commit comments