We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f3ac1e commit c57152fCopy full SHA for c57152f
internal/cmd/output.go
@@ -236,14 +236,20 @@ func displaySummaryTable(stats *StatsCollector) {
236
21, // Fixed width for the skipped column
237
)
238
239
+ summaryRowPRCount := interface{}(len(stats.CombinedPRLinks))
240
+
241
+ if summaryRowPRCount == 0 && dryRun {
242
+ summaryRowPRCount = "DRY RUN"
243
+ }
244
245
// Generate the summary row
246
summaryRow := fmt.Sprintf(
- "│ %-13d │ %-13d │ %s%s │ %-13d │",
247
+ "│ %-13d │ %-13d │ %s%s │ %-13v │",
248
stats.ReposProcessed,
249
stats.PRsCombined,
250
skippedSummaryText,
251
summaryPadding,
- len(stats.CombinedPRLinks),
252
+ summaryRowPRCount,
253
254
255
// Print the summary table
0 commit comments