Преглед на файлове

Get issues and pull requests for nominated T-compiler RFCs

apiraino преди 3 години
родител
ревизия
10cbadc99a
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/agenda.rs

+ 2 - 2
src/agenda.rs

@@ -490,12 +490,12 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
 
     let mut queries = Vec::new();
 
-    //https://github.com/rust-lang/rfcs/pulls?q=is%3Aopen+is%3Apr+label%3AI-nominated+label%3AT-compiler
+    // https://github.com/rust-lang/rfcs/pulls?q=is%3Aopen+label%3AI-nominated+label%3AT-compiler
     queries.push(QueryMap {
         name: "nominated_rfcs_t_compiler",
         query: github::Query {
             kind: github::QueryKind::List,
-            filters: vec![("state", "open"), ("is", "pull-request")],
+            filters: vec![("state", "open")],
             include_labels: vec!["T-compiler", "I-nominated"],
             exclude_labels: vec![],
         },