From b703cd49eba0ae6793c83d3161be6912c9b01757 Mon Sep 17 00:00:00 2001 From: geoffg-sentry <165922362+geoffg-sentry@users.noreply.github.com> Date: Thu, 6 Aug 2026 11:57:17 -0400 Subject: [PATCH] Exclude false positive lob detector --- .github/workflows/secret-scan.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/secret-scan.yml b/.github/workflows/secret-scan.yml index 17919d0..b9860f9 100644 --- a/.github/workflows/secret-scan.yml +++ b/.github/workflows/secret-scan.yml @@ -65,9 +65,9 @@ jobs: id: scan run: | if [ -e .secret_scan_ignore ]; then - trufflehog git file://. --only-verified --github-actions --fail --exclude-paths=.secret_scan_ignore --exclude-detectors="datadogtoken" + trufflehog git file://. --only-verified --github-actions --fail --exclude-paths=.secret_scan_ignore --exclude-detectors="datadogtoken,lob" else - trufflehog git file://. --only-verified --github-actions --fail --exclude-detectors="datadogtoken" + trufflehog git file://. --only-verified --github-actions --fail --exclude-detectors="datadogtoken,lob" fi - name: Send Alert to SIEM id: alert