Skip to content

Commit ddbb7c7

Browse files
committed
Add change proposals to the libs-api agenda
This adds the most recent 5 (to try to give a timely response to new things), and the least recently updated 5 (to try to get through the backlog). We don't have to solve all of them in any given meeting; the ones we address will fall off the agenda.
1 parent 87d399c commit ddbb7c7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tools/agenda-generator/src/generator.rs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,20 @@ impl Generator {
7676
.repo("rust-lang/rust")
7777
.write(&mut self)?;
7878

79+
GithubQuery::new("New Change Proposals")
80+
.labels(&["api-change-proposal"])
81+
.repo("rust-lang/libs-team")
82+
.sort(Sort::Newest)
83+
.take(5)
84+
.write(&mut self)?;
85+
86+
GithubQuery::new("Stalled Change Proposals")
87+
.labels(&["api-change-proposal"])
88+
.repo("rust-lang/libs-team")
89+
.sort(Sort::LeastRecentlyUpdated)
90+
.take(5)
91+
.write(&mut self)?;
92+
7993
GithubQuery::new("Stalled Tracking Issues")
8094
.labels(&["T-libs-api", "C-tracking-issue"])
8195
.repo("rust-lang/rust")

0 commit comments

Comments
 (0)