Skip to content

Commit 595479b

Browse files
committed
swap uodated-at condition
Mergify has apparently fixed the bug that caused it to invert the `updated-at` condition, which caused a PR to be dropped on the floor yesterday and is now skipping the cooldown. Invert it.
1 parent 50b287b commit 595479b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/mergify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pull_request_rules:
3838
conditions:
3939
- or:
4040
- 'label=priority: high :fire:'
41-
- updated-at<2 days ago
41+
- updated-at>=2 days ago
4242
- or:
4343
- label=merge me
4444
- label=squash+merge me
@@ -86,7 +86,7 @@ pull_request_rules:
8686
- -merged
8787
- '#approved-reviews-by>=2'
8888
- '#changes-requested-reviews-by=0'
89-
- updated-at<4 days ago
89+
- updated-at>=4 days ago
9090
- label=merge delay passed
9191
# oy
9292
# lifted these from branch protection imports

0 commit comments

Comments
 (0)