Skip to content

Commit df9eccf

Browse files
authored
Merge pull request #1 from GooeyAI/gitleaks
Gitleaks - Secret Scanning
2 parents 89a6ba1 + e24ce44 commit df9eccf

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/gitleaks.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: gitleaks
2+
on: [pull_request, push, workflow_dispatch]
3+
jobs:
4+
scan:
5+
name: gitleaks
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
with:
10+
fetch-depth: 0
11+
- uses: gitleaks/gitleaks-action@v2
12+
env:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE}}
15+
GITLEAKS_NOTIFY_USER_LIST: '@sandergi'

0 commit comments

Comments
 (0)