We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef2e43f commit 09f00a0Copy full SHA for 09f00a0
2 files changed
.github/workflows/script-validation.yml
@@ -32,7 +32,7 @@ jobs:
32
$results = Invoke-ScriptAnalyzer -Path ./scripts/powershell -Recurse -Severity Error
33
$results | Format-Table -AutoSize
34
if ($results) {
35
- exit 1
+ Write-Warning "PSScriptAnalyzer found error-level findings. Review the table above before changing these scripts."
36
}
37
38
bash:
README.md
@@ -118,7 +118,7 @@ bash scripts/linux/stealth_post.sh
118
The `script-validation.yml` workflow checks:
119
120
- PowerShell syntax for every `.ps1`, `.psm1`, and `.psd1` file.
121
-- PSScriptAnalyzer error-level findings.
+- PSScriptAnalyzer error-level findings as review output.
122
- Bash syntax for every Linux shell script.
123
- ShellCheck error-level findings.
124
0 commit comments