浏览代码

Add ffcps for compiler-team

Santiago Pastorino 4 年之前
父节点
当前提交
a2c3a7b801
共有 2 个文件被更改,包括 17 次插入2 次删除
  1. 15 1
      src/agenda.rs
  2. 2 1
      templates/prioritization_agenda.tt

+ 15 - 1
src/agenda.rs

@@ -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")],

+ 2 - 1
templates/prioritization_agenda.tt

@@ -25,7 +25,8 @@ tags: weekly, rustc
 - Accepted MCPs
 {{-issues::render(issues=mcp_accepted, indent="  ", empty="No new accepted proposals this time.")}}
 - Finalized FCPs (disposition merge)
-{{-issues::render(issues=fcp_finished, indent="  ", empty="No new finished FCP (disposition merge) this time.")}}
+{{-issues::render(issues=fcp_finished_compiler_team, indent="  ", empty="No new finished FCP (disposition merge) this time.")}}
+{{-issues::render(issues=fcp_finished_rust, indent="  ", empty="No new finished FCP (disposition merge) this time.")}}
 
 ### WG checkins