You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/agenda-generator/src/generator.rs
+6-30Lines changed: 6 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -55,52 +55,38 @@ impl Generator {
55
55
56
56
self.fcps(String::from("T-libs-api"))?;
57
57
58
-
GithubQuery::new("Nominated")
58
+
GithubQuery::new("nominated")
59
59
.labels(&["I-libs-api-nominated"])
60
60
.repo("rust-lang/libs-team")
61
61
.repo("rust-lang/rust")
62
62
.repo("rust-lang/rfcs")
63
63
.write(&mutself)?;
64
64
65
-
GithubQuery::new("Waiting on team")
65
+
GithubQuery::new("waiting on team")
66
66
.labels(&["T-libs-api","S-waiting-on-team"])
67
67
.repo("rust-lang/rust")
68
68
.repo("rust-lang/rfcs")
69
69
.write(&mutself)?;
70
70
71
-
GithubQuery::new("Needs decision")
71
+
GithubQuery::new("needs decision")
72
72
.labels(&["T-libs-api","I-needs-decision"])
73
73
.repo("rust-lang/rust")
74
74
.write(&mutself)?;
75
75
76
-
GithubQuery::new("New Change Proposals")
76
+
GithubQuery::new("new change proposal")
77
77
.labels(&["api-change-proposal"])
78
78
.repo("rust-lang/libs-team")
79
79
.sort(Sort::Newest)
80
80
.take(5)
81
81
.write(&mutself)?;
82
82
83
-
GithubQuery::new("Stalled Change Proposals")
83
+
GithubQuery::new("stalled change proposal")
84
84
.labels(&["api-change-proposal"])
85
85
.repo("rust-lang/libs-team")
86
86
.sort(Sort::LeastRecentlyUpdated)
87
87
.take(5)
88
88
.write(&mutself)?;
89
89
90
-
GithubQuery::new("Stalled Tracking Issues")
91
-
.labels(&["T-libs-api","C-tracking-issue"])
92
-
.repo("rust-lang/rust")
93
-
.sort(Sort::LeastRecentlyUpdated)
94
-
.take(5)
95
-
.write(&mutself)?;
96
-
97
-
writeln!(&mutself.agenda,
98
-
"## Actions
99
-
100
-
- [ ] Reply to all issues/PRs discussed in this meeting, or add them to the [open action items](https://hackmd.io/ovrbJj6CRduRgSA0Wzg2zg).
101
-
"
102
-
)?;
103
-
104
90
writeln!(&mutself.agenda,"_Generated by [fully-automatic-rust-libs-team-triage-meeting-agenda-generator](https://github.com/rust-lang/libs-team/tree/main/tools/agenda-generator)_")?;
0 commit comments