Skip to content

Commit 649cc75

Browse files
committed
fixes
1 parent cec356c commit 649cc75

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

internal/cmd/root.go

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -533,20 +533,18 @@ func displayTableStats(stats *StatsCollector) {
533533
fmt.Println(bot)
534534

535535
// 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 := "├───────────────┼───────────────┼───────────────────────┼───────────────┤"
539539
skippedRaw := fmt.Sprintf("%d (MC), %d (DNM)", stats.PRsSkippedMergeConflict, stats.PRsSkippedCriteria)
540540
summaryRow := fmt.Sprintf(
541-
"│ %-13d │ %-20d │ %-11d │ %-21s │ %-13s │ %-13d │",
541+
"│ %-13d │ %-13d │ %-21s │ %-13d │",
542542
stats.ReposProcessed,
543-
stats.PRsCombined+stats.PRsSkippedMergeConflict+stats.PRsSkippedCriteria, // total PRs processed (approx)
544543
stats.PRsCombined,
545544
skippedRaw,
546-
stats.EndTime.Sub(stats.StartTime).Round(time.Second),
547545
len(stats.CombinedPRLinks),
548546
)
549-
summaryBot := "╰───────────────┴──────────────────────┴─────────────┴───────────────────────┴───────────────┴───────────────╯"
547+
summaryBot := "╰───────────────┴───────────────┴───────────────────────┴───────────────╯"
550548
fmt.Println()
551549
fmt.Println(summaryTop)
552550
fmt.Println(summaryHead)

0 commit comments

Comments
 (0)