We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e397d4e commit edacad4Copy full SHA for edacad4
scripts/main.ps1
@@ -154,6 +154,8 @@ $stats = [pscustomobject]@{
154
Files = "$($codeCoverage.FilesAnalyzedCount) files"
155
}
156
157
+$success = $coveragePercent -ge $coveragePercentTarget
158
+$statusIcon = $success ? '✅' : '❌'
159
$stats | Format-Table -AutoSize | Out-String
160
161
# Build HTML table for 'missed' commands
@@ -270,7 +272,7 @@ LogGroup 'Set step summary' {
270
272
271
273
274
# -- Output the markdown to GitHub step summary --
- $markdown = Heading 1 'Code Coverage Report' {
275
+ $markdown = Heading 1 "$statusIcon Code Coverage Report" {
276
277
Heading 2 'Summary' {
278
Table {
0 commit comments