File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- ' powershell-yaml' , ' Hashtable' | Install-PSResource - Repository PSGallery - TrustRepository - Reinstall
1+ ' powershell-yaml' , ' Hashtable' | Install-PSResource - Repository PSGallery - TrustRepository
22
33$settingsPath = $env: PSMODULE_GET_SETTINGS_INPUT_SettingsPath
44$debug = $env: PSMODULE_GET_SETTINGS_INPUT_Debug
@@ -168,11 +168,13 @@ LogGroup 'Calculate Job Run Conditions:' {
168168 $isMergedPR = $isPR -and $env: GITHUB_EVENT_PULL_REQUEST_MERGED -eq ' true'
169169 $isNotAbandonedPR = -not $isAbandonedPR
170170
171- Write-Host " isPR: $isPR "
172- Write-Host " isOpenOrUpdatedPR: $isOpenOrUpdatedPR "
173- Write-Host " isAbandonedPR: $isAbandonedPR "
174- Write-Host " isMergedPR: $isMergedPR "
175- Write-Host " isNotAbandonedPR: $isNotAbandonedPR "
171+ [pscustomobject ]@ {
172+ isPR = $isPR
173+ isOpenOrUpdatedPR = $isOpenOrUpdatedPR
174+ isAbandonedPR = $isAbandonedPR
175+ isMergedPR = $isMergedPR
176+ isNotAbandonedPR = $isNotAbandonedPR
177+ } | Format-List | Out-String
176178}
177179
178180# Get-TestSuites
You can’t perform that action at this time.
0 commit comments