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.
2 parents 4e4c9dd + b8448d5 commit 5ffafdbCopy full SHA for 5ffafdb
homu/main.py
@@ -180,7 +180,9 @@ def sort_key(self):
180
STATUS_TO_PRIORITY.get(self.get_status(), -1),
181
1 if self.mergeable is False else 0,
182
0 if self.approved_by else 1,
183
- self.rollup,
+ # Sort rollup=always to the bottom of the queue, but treat all
184
+ # other rollup statuses as equivalent
185
+ 1 if WORDS_TO_ROLLUP['rollup=always'] == self.rollup else 0,
186
-self.priority,
187
self.num,
188
]
0 commit comments