From 661a93666d7abc4d020dfce9f2cc4d874e76160f Mon Sep 17 00:00:00 2001 From: --show-origin Date: Wed, 11 Dec 2024 09:05:46 -0800 Subject: [PATCH] fix(trufflehog.yml): fixed typo in exclude-paths argument --- .github/workflows/trufflehog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trufflehog.yml b/.github/workflows/trufflehog.yml index 6f18c37a..051c68df 100644 --- a/.github/workflows/trufflehog.yml +++ b/.github/workflows/trufflehog.yml @@ -53,7 +53,7 @@ jobs: with: path: ./ # Scan the entire repository base: "${{ github.event.repository.default_branch }}" # Set base branch for comparison (pull requests) - extra_args: --filter-entropy=4 --results=verified,unknown --debug --exlude-paths=.thignore + extra_args: --filter-entropy=4 --results=verified,unknown --debug --exclude-paths=.thignore - name: Scan Results Status if: steps.trufflehog.outcome == 'failure'