We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e870cc commit 667cdfbCopy full SHA for 667cdfb
1 file changed
.github/workflows/secret-scan.yml
@@ -0,0 +1,24 @@
1
+name: GitLeaks Security Scan
2
+
3
+on:
4
+ push:
5
+ branches: [ '*' ]
6
+ pull_request:
7
8
9
+jobs:
10
+ gitleaks:
11
+ name: Secret Detection
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
20
+ - name: Run GitLeaks
21
+ uses: gitleaks/gitleaks-action@v2
22
+ env:
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
+ GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
0 commit comments