@@ -45,8 +45,6 @@ impl Generator {
45
45
46
46
## Agenda
47
47
48
- - [Open action items](https://hackmd.io/ovrbJj6CRduRgSA0Wzg2zg)
49
- - [Libs team wishlist](https://hackmd.io/HPjGPC09RayylxGeaIfTew)
50
48
- Triage
51
49
- Anything else?
52
50
@@ -106,7 +104,6 @@ impl Generator {
106
104
107
105
## Agenda
108
106
109
- - [Open Action Items](https://hackmd.io/Uehlc0qUQfWfvY1swYWRgQ)
110
107
- Triage
111
108
- Anything else?
112
109
@@ -378,9 +375,9 @@ impl Generator {
378
375
Ok ( ( ) )
379
376
}
380
377
381
- fn write_issues ( & mut self , issues : & [ Issue ] ) -> Result < ( ) > {
378
+ fn write_issues ( & mut self , category : & str , issues : & [ Issue ] ) -> Result < ( ) > {
382
379
for issue in issues. iter ( ) . rev ( ) {
383
- write ! ( self . agenda, " - {}" , shorten( & issue. html_url) ) ?;
380
+ write ! ( self . agenda, "### ({category}) {}" , shorten( & issue. html_url) ) ?;
384
381
for label in issue. labels . iter ( ) . filter ( |s| s. starts_with ( "P-" ) ) {
385
382
write ! ( self . agenda, " `{}`" , label) ?;
386
383
}
@@ -390,14 +387,16 @@ impl Generator {
390
387
. iter ( )
391
388
. any ( |l| l == "finished-final-comment-period" )
392
389
{
393
- write ! ( self . agenda, " FCP finished." ) ?;
390
+ writeln ! ( self . agenda, ) ?;
391
+ write ! ( self . agenda, "FCP finished." ) ?;
394
392
for label in issue. labels . iter ( ) {
395
393
if let Some ( disposition) = label. strip_prefix ( "disposition-" ) {
396
394
write ! ( self . agenda, " Should be {}d?" , disposition) ?;
397
395
}
398
396
}
399
397
writeln ! ( self . agenda, ) ?;
400
398
}
399
+ writeln ! ( self . agenda, ) ?;
401
400
}
402
401
403
402
Ok ( ( ) )
@@ -570,20 +569,20 @@ impl GithubQuery {
570
569
url += sort. web_ui_str ( ) ;
571
570
}
572
571
573
- writeln ! (
574
- generator. agenda,
575
- "- [{} `{repo}` `{labels}` items]({url})" ,
576
- issues. len( ) ,
577
- repo = repo,
578
- labels = labels. join( "` `" ) ,
579
- url = url,
580
- ) ?;
572
+ // writeln!(
573
+ // generator.agenda,
574
+ // "- [{} `{repo}` `{labels}` items]({url})",
575
+ // issues.len(),
576
+ // repo = repo,
577
+ // labels = labels.join("` `"),
578
+ // url = url,
579
+ // )?;
581
580
let issues = if let Some ( count) = self . count {
582
581
& issues[ ..count]
583
582
} else {
584
583
& issues[ ..]
585
584
} ;
586
- generator. write_issues ( & issues) ?;
585
+ generator. write_issues ( & labels . join ( " " ) , & issues) ?;
587
586
588
587
empty = false ;
589
588
}
0 commit comments