File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -533,20 +533,18 @@ 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 │ Total PRs │ Combined │ Skipped │ Time │ Combined PRs │"
538
- summarySep := "├───────────────┼────────────────────── ┼─────────────┼───────────────────────┼ ───────────────┼───────────────┤"
536
+ summaryTop := "╭───────────────┬───────────────┬───────────────────────┬───────────────╮"
537
+ summaryHead := "│ Repos │ Combined PRs │ Skipped │ Combined PRs │"
538
+ summarySep := "├───────────────┼───────────────┼───────────────────────┼───────────────┤"
539
539
skippedRaw := fmt .Sprintf ("%d (MC), %d (DNM)" , stats .PRsSkippedMergeConflict , stats .PRsSkippedCriteria )
540
540
summaryRow := fmt .Sprintf (
541
- "│ %-13d │ %-20d │ %-11d │ %- 21s │ %-13s │ %-13d │" ,
541
+ "│ %-13d │ %-13d │ %-21s │ %-13d │" ,
542
542
stats .ReposProcessed ,
543
- stats .PRsCombined + stats .PRsSkippedMergeConflict + stats .PRsSkippedCriteria , // total PRs processed (approx)
544
543
stats .PRsCombined ,
545
544
skippedRaw ,
546
- stats .EndTime .Sub (stats .StartTime ).Round (time .Second ),
547
545
len (stats .CombinedPRLinks ),
548
546
)
549
- summaryBot := "╰───────────────┴────────────────────── ┴─────────────┴───────────────────────┴ ───────────────┴───────────────╯"
547
+ summaryBot := "╰───────────────┴───────────────┴───────────────────────┴───────────────╯"
550
548
fmt .Println ()
551
549
fmt .Println (summaryTop )
552
550
fmt .Println (summaryHead )
You can’t perform that action at this time.
0 commit comments