Преглед изворни кода

Merge pull request #923 from apiraino/fix-rfc-github-query-tcompiler-agenda

Fix repository for RFC retrieval query
Mark Rousskov пре 4 година
родитељ
комит
093e849c2e
1 измењених фајлова са 10 додато и 1 уклоњено
  1. 10 1
      src/agenda.rs

+ 10 - 1
src/agenda.rs

@@ -479,6 +479,15 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
         },
     });
 
+    actions.push(Query {
+        repo: "rust-lang/rust",
+        queries,
+    });
+
+    // retrieve some RFCs for the T-compiler agenda
+
+    let mut queries = Vec::new();
+
     //https://github.com/rust-lang/rfcs/pulls?q=is%3Aopen+is%3Apr+label%3AI-nominated+label%3AT-compiler
     queries.push(QueryMap {
         name: "nominated_rfcs_t_compiler",
@@ -491,7 +500,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
     });
 
     actions.push(Query {
-        repo: "rust-lang/rust",
+        repo: "rust-lang/rfcs",
         queries,
     });