@@ -538,13 +538,9 @@ func displayTableStats(stats *StatsCollector) {
538
538
// Print summary row in table style
539
539
summaryLabel := fmt .Sprintf ("%-*s" , repoCol , "Summary" )
540
540
summaryCombined := fmt .Sprintf ("%*d" , colWidths [1 ], stats .PRsCombined )
541
- // Skipped: just a single total value number
542
541
totalSkipped := stats .PRsSkippedMergeConflict + stats .PRsSkippedCriteria
543
- summarySkipped := fmt .Sprintf ("%d" , totalSkipped )
544
- summarySkipped = fmt .Sprintf ("%-*s" , colWidths [2 ], summarySkipped )
545
- // Status: count like "3 repos"
546
- summaryStatus := fmt .Sprintf ("%d repos" , stats .ReposProcessed )
547
- summaryStatus = fmt .Sprintf ("%-*s" , colWidths [3 ], summaryStatus )
542
+ summarySkipped := fmt .Sprintf ("%-*s" , colWidths [2 ], fmt .Sprintf ("%d" , totalSkipped ))
543
+ summaryStatus := fmt .Sprintf ("%-*s" , colWidths [3 ], fmt .Sprintf ("%d repos" , stats .ReposProcessed ))
548
544
fmt .Printf (
549
545
"│ %-*s │ %s │ %s │ %s │\n " ,
550
546
repoCol , summaryLabel ,
@@ -553,19 +549,18 @@ func displayTableStats(stats *StatsCollector) {
553
549
summaryStatus ,
554
550
)
555
551
556
- // Print horizontal line (same as sep) to section off PR links
557
552
fmt .Println (sep )
558
553
559
- // Print PR links block: no vertical lines, just one PR link per line in the bottom section of the table
554
+ // Print PR links block: label row, then each link as a plain line (no table formatting)
560
555
if len (stats .CombinedPRLinks ) > 0 {
561
556
prLinksLabel := fmt .Sprintf ("%-*s" , repoCol , "Links to Combined PRs" )
562
557
fmt .Printf ("│ %-*s │\n " , repoCol , prLinksLabel )
558
+ // Print each link as a plain line, not inside the table
563
559
for _ , link := range stats .CombinedPRLinks {
564
- fmt .Printf ( "│ %-*s │ \n " , repoCol , link )
560
+ fmt .Println ( link )
565
561
}
566
562
}
567
563
568
- // Print bottom border
569
564
fmt .Println (bot )
570
565
}
571
566
0 commit comments