|
@@ -1,4 +1,4 @@
|
|
|
-use crate::actions::{self, Action, Query, QueryMap, Step};
|
|
|
+use crate::actions::{Action, Query, QueryMap, Step};
|
|
|
use crate::github;
|
|
|
|
|
|
pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
@@ -36,7 +36,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
});
|
|
|
|
|
|
queries.push(QueryMap {
|
|
|
- name: actions::IN_PRE_FCP_COMPILER_TEAM,
|
|
|
+ name: "in_pre_fcp",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open")],
|
|
@@ -45,7 +45,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
},
|
|
|
});
|
|
|
queries.push(QueryMap {
|
|
|
- name: actions::IN_FCP_COMPILER_TEAM,
|
|
|
+ name: "in_fcp",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open")],
|
|
@@ -65,7 +65,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
});
|
|
|
|
|
|
queries.push(QueryMap {
|
|
|
- name: actions::FCP_FINISHED_COMPILER_TEAM,
|
|
|
+ name: "fcp_finished",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "all")],
|
|
@@ -86,7 +86,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
let mut queries = Vec::new();
|
|
|
|
|
|
queries.push(QueryMap {
|
|
|
- name: actions::IN_PRE_FCP_RUST,
|
|
|
+ name: "in_pre_fcp",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open")],
|
|
@@ -95,7 +95,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
},
|
|
|
});
|
|
|
queries.push(QueryMap {
|
|
|
- name: actions::IN_FCP_RUST,
|
|
|
+ name: "in_fcp",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open")],
|
|
@@ -105,7 +105,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
});
|
|
|
|
|
|
queries.push(QueryMap {
|
|
|
- name: actions::FCP_FINISHED_RUST,
|
|
|
+ name: "fcp_finished",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "all")],
|
|
@@ -126,7 +126,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
let mut queries = Vec::new();
|
|
|
|
|
|
queries.push(QueryMap {
|
|
|
- name: actions::IN_PRE_FCP_FORGE,
|
|
|
+ name: "in_pre_fcp",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open")],
|
|
@@ -135,7 +135,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
},
|
|
|
});
|
|
|
queries.push(QueryMap {
|
|
|
- name: actions::IN_FCP_FORGE,
|
|
|
+ name: "in_fcp",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "open")],
|
|
@@ -145,7 +145,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
|
|
|
});
|
|
|
|
|
|
queries.push(QueryMap {
|
|
|
- name: actions::FCP_FINISHED_FORGE,
|
|
|
+ name: "fcp_finished",
|
|
|
query: github::Query {
|
|
|
kind: github::QueryKind::List,
|
|
|
filters: vec![("state", "all")],
|