We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df3772a commit 23c279aCopy full SHA for 23c279a
.github/workflows/00-scan-secrets.yml
@@ -13,10 +13,13 @@ jobs:
13
with:
14
fetch-depth: 0
15
16
+ # https://github.com/marketplace/actions/trufflehog-oss#advanced-usage-scan-entire-branch
17
- name: 🐷 TruffleHog OSS
18
uses: trufflesecurity/[email protected]
19
if: ${{ github.event.pull_request != null }} # only scan on pull-requests
20
- path: ./
21
- base: ${{ github.event.repository.default_branch }}
22
- head: HEAD
+ # Setting base to an empty string scans the entire branch, per TruffleHog OSS advanced usage:
23
+ base: ""
24
+ head: ${{ github.ref_name }}
25
+ extra_args: --results=verified,unknown
0 commit comments