Skip to content

Commit

Permalink
Merge pull request #10 from ayodejiayodele/main
Browse files Browse the repository at this point in the history
  • Loading branch information
samsmithnz authored Oct 11, 2022
2 parents 7b3c03b + 189d857 commit ed654ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/leadtimeforchanges.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -237,14 +237,14 @@ function Main ([string] $ownerRepo,
elseif ($leadTimeForChangesInHours -lt 1)
{
$rating = "Elite"
$color = "green"
$color = "brightgreen"
$displayMetric = [math]::Round($leadTimeForChangesInHours * 60, 2)
$displayUnit = "minutes"
}
elseif ($leadTimeForChangesInHours -le $dailyDeployment)
{
$rating = "Elite"
$color = "green"
$color = "brightgreen"
$displayMetric = [math]::Round($leadTimeForChangesInHours, 2)
$displayUnit = "hours"
}
Expand Down

0 comments on commit ed654ba

Please sign in to comment.