Add daily scans and Ninja burst mode
Some checks failed
OfficeCom Sentinel Client / validate-client (push) Successful in 23s
OfficeCom Sentinel Client / build-client-windows (push) Failing after 18s

This commit is contained in:
OfficeCom Codex
2026-07-26 02:17:03 +02:00
parent f392057535
commit 91c5794502
10 changed files with 148 additions and 12 deletions

View File

@@ -9,6 +9,7 @@ param(
[string]$UploadMode = "auto",
[string]$VulnerabilityCsvPath = "",
[string]$MirrorRoot = "",
[switch]$SuppressTriggerExit,
[ValidateSet("status", "attack-only", "cve-critical", "attack-plus-cve")]
[string]$Mode = "status"
)
@@ -227,8 +228,8 @@ Write-Host "Total CVEs: $totalCves"
Write-Host "Report: $outputFullPath"
Write-Host "Runner exit code: $runnerExitCode"
if ($monitorTriggered) {
if ($monitorTriggered -and -not $SuppressTriggerExit) {
exit 1
}
exit 0
exit $runnerExitCode