|
@@ -460,7 +460,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
});
|
|
|
|
|
|
queries.push(QueryMap {
|
|
|
- name: "i_nominated_t_compiler",
|
|
|
+ name: "nominated_t_compiler",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open")],
|
|
@@ -470,7 +470,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
});
|
|
|
|
|
|
queries.push(QueryMap {
|
|
|
- name: "i_nominated_libs_impl",
|
|
|
+ name: "nominated_libs_impl",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open")],
|
|
@@ -525,7 +525,7 @@ pub fn lang<'a>() -> Box<dyn Action> {
|
|
|
|
|
|
//https://github.com/rust-lang/rfcs/pulls?q=is%3Aopen+is%3Apr+label%3AI-nominated+label%3AT-lang
|
|
|
queries.push(QueryMap {
|
|
|
- name: "nominated_rfcs",
|
|
|
+ name: "nominated_rfcs_t_lang",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open"), ("is", "pr")],
|
|
@@ -534,6 +534,17 @@ pub fn lang<'a>() -> Box<dyn Action> {
|
|
|
},
|
|
|
});
|
|
|
|
|
|
+ //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",
|
|
|
+ query: github::Query {
|
|
|
+ kind: github::QueryKind::List,
|
|
|
+ filters: vec![("state", "open"), ("is", "pr")],
|
|
|
+ include_labels: vec!["T-compiler", "I-nominated"],
|
|
|
+ exclude_labels: vec![],
|
|
|
+ },
|
|
|
+ });
|
|
|
+
|
|
|
actions.push(Query {
|
|
|
repo: "rust-lang/rfcs",
|
|
|
queries,
|