From aef75ee9ffc64312e5889ef0e5e6998a59b09e93 Mon Sep 17 00:00:00 2001 From: teor Date: Wed, 26 Jan 2022 21:45:14 +1000 Subject: [PATCH] fix(mergify): use low-priority queue for the correct jobs (#3406) This fixes an inverted match condition. --- .github/mergify.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/mergify.yml b/.github/mergify.yml index 9880bc9b..e9cf3d03 100644 --- a/.github/mergify.yml +++ b/.github/mergify.yml @@ -62,8 +62,8 @@ pull_request_rules: - -draft - base=main - or: - - "-label~=^P-Low" - - "-label~=^P-Optional" + - "label~=^P-Low" + - "label~=^P-Optional" - label!=do-not-merge actions: queue: @@ -81,4 +81,4 @@ pull_request_rules: - check-success=Coverage (+nightly) actions: merge: - method: squash \ No newline at end of file + method: squash