Skip to content

Commit 356d1eb

Browse files
committed
feat: 🎸 Added secrets workflow
1 parent 19c543c commit 356d1eb

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/secrets.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Leaked Secrets Scan
2+
on: [push, pull_request]
3+
jobs:
4+
TruffleHog:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@v3
9+
with:
10+
fetch-depth: 0
11+
- name: TruffleHog OSS
12+
uses: trufflesecurity/trufflehog@main
13+
with:
14+
path: ./
15+
base: ${{ github.event.repository.default_branch }}
16+
head: HEAD
17+
extra_args: --debug --only-verified

0 commit comments

Comments
 (0)