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 ba39aa4 commit b31a39dCopy full SHA for b31a39d
src/triage.rs
@@ -52,7 +52,7 @@ pub async fn pulls(
52
}
53
54
let mut pulls: Vec<Value> = Vec::new();
55
- for base_pull in base_pulls.into_iter() {
+ for base_pull in base_pulls.into_iter().filter(|pull| !pull.draft) {
56
let assignee = base_pull.assignee.map_or("".to_string(), |v| v.login);
57
let updated_at = base_pull
58
.updated_at
0 commit comments