Skip to content

Commit

Permalink
update to remove each param
Browse files Browse the repository at this point in the history
  • Loading branch information
seanconroy2021 committed Oct 2, 2023
1 parent a9a1a2c commit 563bd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/applicationsnapshot/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ func generateMarkdownSummary(r *Report) ([]byte, error) {

writeMarkdownField(&markdownBuffer, "Time", r.created.UTC().Format("2006-01-02 15:04:05"), "")
writeMarkdownField(&markdownBuffer, "Name", " ", "")
writeMarkdownField(&markdownBuffer, "Successes", totalSuccesses, writeIcon(totalSuccesses >= 1 && pr.Success))
writeMarkdownField(&markdownBuffer, "Successes", totalSuccesses, writeIcon(totalSuccesses >= 1))
writeMarkdownField(&markdownBuffer, "Failures", totalViolations, writeIcon(totalViolations == 0))
writeMarkdownField(&markdownBuffer, "Warnings", totalWarnings, writeIcon(totalWarnings == 0))
writeMarkdownField(&markdownBuffer, "Result", r.Success, writeIcon(r.Success))
Expand Down

0 comments on commit 563bd9d

Please sign in to comment.