We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ee45d6 commit d59ef91Copy full SHA for d59ef91
.github/workflows/secrets_scanner.yaml
@@ -0,0 +1,17 @@
1
+name: Leaked Secrets Scan
2
+on: [pull_request]
3
+jobs:
4
+ TruffleHog:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Checkout code
8
+ uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
9
+ with:
10
+ fetch-depth: 0
11
+ - name: TruffleHog OSS
12
+ uses: trufflesecurity/trufflehog@0c66d30c1f4075cee1aada2e1ab46dabb1b0071a
13
14
+ path: ./
15
+ base: ${{ github.event.repository.default_branch }}
16
+ head: HEAD
17
+ extra_args: --debug --only-verified
0 commit comments