File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed
tools/agenda-generator/src Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,25 @@ impl Generator {
154
154
}
155
155
156
156
pub fn error_handling_pg_agenda ( mut self ) -> Result < String > {
157
+ writeln ! (
158
+ & mut self . agenda,
159
+ "# Project Group Error Handling Meeting {}
160
+
161
+ ###### tags: `Error Handling` `Minutes`
162
+
163
+ **Attendees**: ...
164
+
165
+ ## Agenda Items
166
+
167
+ - [Open action items](https://hackmd.io/@rust-libs/Hyj7kRSld)
168
+ - Triage
169
+ - Individual Status Updates
170
+
171
+ ## Triage
172
+ " ,
173
+ chrono:: Utc :: now( ) . format( "%Y-%m-%d" )
174
+ ) ?;
175
+
157
176
GithubQuery :: new ( "Nominated" )
158
177
. labels ( & [ "PG-error-handling" , "I-nominated" ] )
159
178
. repo ( "rust-lang/rust" )
@@ -347,7 +366,9 @@ impl Generator {
347
366
}
348
367
349
368
fn dedup ( & mut self , issues : Vec < Issue > ) -> impl Iterator < Item = Issue > + ' _ {
350
- issues. into_iter ( ) . filter ( move |issue| self . seen . insert ( issue. html_url . clone ( ) ) )
369
+ issues
370
+ . into_iter ( )
371
+ . filter ( move |issue| self . seen . insert ( issue. html_url . clone ( ) ) )
351
372
}
352
373
}
353
374
@@ -499,7 +520,6 @@ impl GithubQuery {
499
520
url += sort. web_ui_str ( ) ;
500
521
}
501
522
502
-
503
523
writeln ! (
504
524
generator. agenda,
505
525
"- [{} `{repo}` `{labels}` items]({url})" ,
You can’t perform that action at this time.
0 commit comments