Skip to content

Commit

Permalink
Fix report name
Browse files Browse the repository at this point in the history
  • Loading branch information
josephearl committed Nov 20, 2023
1 parent 2f45a2f commit 169c034
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -360,11 +360,11 @@ if ($inputs.skip_check_run -ne $true -and $inputs.publish_only_summary -eq $true
Set-Outcome

Set-Output
$coverageSummaryData = [System.IO.File]::ReadAllText($script:coverage_report_path)
Publish-ToCheckRun -ReportData $coverageSummaryData -ReportName "Code Coverage" -ReportTitle $script:coverage_report_title -outcome $Script:status -coveragePercentage $script:coveragePercentageString

$coverageSummaryData = [System.IO.File]::ReadAllText($script:coverage_report_path)

Publish-ToCheckRun -ReportData $coverageSummaryData -ReportName $script:coverage_report_name -ReportTitle $script:coverage_report_title -outcome $Script:status -coveragePercentage $script:coveragePercentageString

# Update-PRCheck -ReportData $script:coverageSummaryData -ReportName $coverage_report_name -ReportTitle $script:messageToDisplay

Enforce-QualityGate
Expand Down

0 comments on commit 169c034

Please sign in to comment.