Browse Source

lang team agenda: date, attendance, collapse prs/issues

Niko Matsakis 4 years ago
parent
commit
c54701df25
2 changed files with 16 additions and 23 deletions
  1. 1 12
      src/agenda.rs
  2. 15 11
      templates/lang_agenda.tt

+ 1 - 12
src/agenda.rs

@@ -552,20 +552,9 @@ pub fn lang<'a>() -> Box<dyn Action> {
         },
     });
 
-    // https://github.com/rust-lang/rust/pulls?q=is%3Aopen+is%3Apr+label%3AI-nominated+label%3AT-lang
-    queries.push(QueryMap {
-        name: "nominated_prs",
-        query: github::Query {
-            kind: github::QueryKind::List,
-            filters: vec![("state", "open"), ("is", "pr")],
-            include_labels: vec!["T-lang", "I-nominated"],
-            exclude_labels: vec![],
-        },
-    });
-
     // https://github.com/rust-lang/rust/issues?utf8=%E2%9C%93&q=is%3Aopen+is%3Aissue+label%3AI-nominated+label%3AT-lang+
     queries.push(QueryMap {
-        name: "nominated_issues",
+        name: "nominated_prs_issues",
         query: github::Query {
             kind: github::QueryKind::List,
             filters: vec![("state", "open")],

+ 15 - 11
templates/lang_agenda.tt

@@ -2,6 +2,18 @@
 
 # T-lang meeting agenda
 
+* Meeting date 
+
+## Attendance
+
+* Team members:
+* Others:
+
+## Before meeting checklist
+
+* [ ] Update the project board with new proposals
+* [ ] Update the project board with new RFCs
+
 ## Pending proposals
 
 {{-issues::render(issues=pending_proposals, indent="  ", empty="No pending proposals this time.")}}
@@ -10,22 +22,14 @@
 
 Review the [Lang team project board](https://github.com/rust-lang/lang-team/projects/2) and get updates
 
-## Newly created RFCs
-
-{{-issues::render(issues=newly_created_rfcs, indent="  ", empty="No new RFCs this time.")}}
-
 ## Nominated RFCs
 
 {{-issues::render(issues=nominated_rfcs, indent="  ", empty="No nominated RFCs this time.")}}
 
-## P-high issues
+## P-high issues on rust-lang/rust
 
 {{-issues::render(issues=p_high_issues, indent="  ", empty="No P-high issues this time.")}}
 
-## Nominated PRs
-
-{{-issues::render(issues=nominated_prs, indent="  ", empty="No nominated PRs this time.")}}
-
-## Nominated issues
+## Nominated PRs and issues on rust-lang/rust
 
-{{-issues::render(issues=nominated_issues, indent="  ", empty="No nominated issues this time.")}}
+{{-issues::render(issues=nominated_prs_issues, indent="  ", empty="No nominated PRs this time.")}}