File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 2828 uses : super-linter/super-linter@12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e # v8.4.0
2929 env :
3030 GITHUB_TOKEN : ${{ github.token }}
31- SUPPRESS_OUTPUT_ON_SUCCESS : true
3231 VALIDATE_BIOME_FORMAT : false
3332 VALIDATE_BIOME_LINT : false
3433 VALIDATE_GITHUB_ACTIONS_ZIZMOR : false
Original file line number Diff line number Diff line change @@ -181,9 +181,7 @@ $settings = [pscustomobject]@{
181181 Linter = [pscustomobject ]@ {
182182 Skip = $settings.Linter.Skip ?? $false
183183 ShowSummaryOnSuccess = $settings.Linter.ShowSummaryOnSuccess ?? $false
184- env = @ {
185- SUPPRESS_OUTPUT_ON_SUCCESS = $settings.Linter.env.SUPPRESS_OUTPUT_ON_SUCCESS ?? $true
186- } + ($settings.Linter.env ?? @ {})
184+ env = $settings.Linter.env ?? @ {}
187185 }
188186}
189187
You can’t perform that action at this time.
0 commit comments