You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-Host"Workflow run with Id: $($workflowToCheck.id) for version '$Version' - status '$($workflowToCheck.status)'"
43
+
}
44
+
$result.Conclusion=$workflowToCheck.conclusion
45
+
$result.Url=$workflowToCheck.html_url
46
+
if ($workflowToCheck.conclusion-ne"success") {
47
+
Write-Host"Triggered workflow for version '$Version' completed unsuccessfully with result '$($workflowToCheck.conclusion)'. Check the logs: $($workflowToCheck.html_url)"
48
+
return$result
49
+
}
50
+
Write-Host"Triggered workflow for version '$Version' succeeded; Url: $($workflowToCheck.html_url)"
0 commit comments