File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -533,18 +533,19 @@ func displayTableStats(stats *StatsCollector) {
533
533
fmt .Println (bot )
534
534
535
535
// Print summary mini-table with proper padding
536
- summaryTop := "╭───────────────┬─────────────┬───────────────┬───────────────┬───────────────╮"
537
- summaryHead := "│ Repos │ Combined │ Skipped (MC) │ Skipped (DNM) │ Time │"
538
- summarySep := "├───────────────┼─────────────┼───────────────┼───────────────┼───────────────┤"
536
+ summaryTop := "╭───────────────┬─────────────┬───────────────┬───────────────┬───────────────┬────────────────────── ╮"
537
+ summaryHead := "│ Repos │ Combined │ Skipped (MC) │ Skipped (DNM) │ Time │ Total PRs │ "
538
+ summarySep := "├───────────────┼─────────────┼───────────────┼───────────────┼───────────────┼────────────────────── ┤"
539
539
summaryRow := fmt .Sprintf (
540
- "│ %-13d │ %-11d │ %-13d │ %-13d │ %-13s │" ,
540
+ "│ %-13d │ %-11d │ %-13d │ %-13d │ %-13s │ %-20d │ " ,
541
541
stats .ReposProcessed ,
542
542
stats .PRsCombined ,
543
543
stats .PRsSkippedMergeConflict ,
544
544
stats .PRsSkippedCriteria ,
545
545
stats .EndTime .Sub (stats .StartTime ).Round (time .Second ),
546
+ len (stats .CombinedPRLinks ),
546
547
)
547
- summaryBot := "╰───────────────┴─────────────┴───────────────┴───────────────┴───────────────╯"
548
+ summaryBot := "╰───────────────┴─────────────┴───────────────┴───────────────┴───────────────┴────────────────────── ╯"
548
549
fmt .Println ()
549
550
fmt .Println (summaryTop )
550
551
fmt .Println (summaryHead )
You can’t perform that action at this time.
0 commit comments