瀏覽代碼

Update src/agenda.rs

Santiago Pastorino 3 年之前
父節點
當前提交
297cb97c96
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/agenda.rs

+ 1 - 1
src/agenda.rs

@@ -482,7 +482,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
         name: "top_unreviewed_prs",
         query: github::Query {
             kind: github::QueryKind::List,
-            filters: vec![("state", "open"), ("is", "pull-request"), ("-is", "draft")],
+            filters: vec![("state", "open"), ("is", "pull-request"), ("draft", "false")],
             include_labels: vec!["S-waiting-on-review", "T-compiler"],
             exclude_labels: vec![],
             ordering,