|
@@ -56,6 +56,20 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
},
|
|
|
});
|
|
|
|
|
|
+ queries.push(QueryMap {
|
|
|
+ name: "fcp_finished_compiler_team",
|
|
|
+ query: github::Query {
|
|
|
+ kind: github::QueryKind::List,
|
|
|
+ filters: vec![("state", "open")],
|
|
|
+ include_labels: vec![
|
|
|
+ "finished-final-comment-period",
|
|
|
+ "disposition-merge",
|
|
|
+ "to-announce",
|
|
|
+ ],
|
|
|
+ exclude_labels: vec![],
|
|
|
+ },
|
|
|
+ });
|
|
|
+
|
|
|
actions.push(Query {
|
|
|
repo: "rust-lang/compiler-team",
|
|
|
queries,
|
|
@@ -83,7 +97,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
});
|
|
|
|
|
|
queries.push(QueryMap {
|
|
|
- name: "fcp_finished",
|
|
|
+ name: "fcp_finished_rust",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open")],
|