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 ac05e4a + d81d9fe commit d11d555Copy full SHA for d11d555
src/handlers/assign.rs
@@ -781,6 +781,11 @@ async fn find_reviewer_from_names(
781
// These are all ideas for improving the selection here. However, I'm not
782
// sure they are really worth the effort.
783
784
+ // Special case user "ghost", we always skip filtering
785
+ if candidates.contains("ghost") {
786
+ return Ok("ghost".to_string());
787
+ }
788
+
789
// filter out team members without capacity
790
let filtered_candidates = filter_by_capacity(db, &candidates)
791
.await
0 commit comments