We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebf4366 commit 17b3d07Copy full SHA for 17b3d07
‎.github/workflows/Get-Settings.yml
@@ -131,7 +131,7 @@ jobs:
131
RepositoryName = $env:GITHUB_REPOSITORY_NAME
132
} | Format-List | Out-String
133
134
- $name = ![string]::IsNullOrEmpty($inputName) ? $name : [string]::IsNullOrEmpty($settings.Name) ? $settings.Name : $env:GITHUB_REPOSITORY_NAME
+ $name = ![string]::IsNullOrEmpty($inputName) ? $name : ![string]::IsNullOrEmpty($settings.Name) ? $settings.Name : $env:GITHUB_REPOSITORY_NAME
135
}
136
137
$settings = [pscustomobject]@{
0 commit comments