There was an error while loading. Please reload this page.
1 parent 923590f commit 1928fb8Copy full SHA for 1928fb8
1 file changed
.github/workflows/gitleaks.yaml
@@ -0,0 +1,20 @@
1
+name: gitleaks
2
+on:
3
+ pull_request:
4
+ push:
5
+ workflow_dispatch:
6
+permissions:
7
+ contents: read
8
+ pull-requests: write
9
+jobs:
10
+ scan:
11
+ name: gitleaks
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+ - uses: gitleaks/gitleaks-action@v2
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
0 commit comments