File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Ignore items listed in .gitallowed
2
+ # Workaround for https://github.com/awslabs/git-secrets/issues/198
3
+ .gitallowed
4
+
5
+ # Ignore false positive in docs/getting-started.md
6
+ docs/getting-started.md:[0-9]+:export AWS_ACCOUNT=000000000000
Original file line number Diff line number Diff line change 30
30
- run : ./scripts/check-ltag.sh
31
31
- run : ./scripts/check-dco.sh
32
32
- run : PATH=$PATH:$(pwd) ./scripts/check-flatc.sh
33
+
34
+ git-secrets :
35
+ runs-on : ubuntu-20.04
36
+ steps :
37
+ - name : Pull latest awslabs/git-secrets repo
38
+ uses : actions/checkout@v4
39
+ with :
40
+ repository : awslabs/git-secrets
41
+ ref : 1.3.0
42
+ fetch-tags : true
43
+ path : git-secrets
44
+ - name : Install git secrets from source
45
+ run : sudo make install
46
+ working-directory : git-secrets
47
+ - uses : actions/checkout@v4
48
+ - name : Scan repository for git secrets
49
+ run : |
50
+ git secrets --register-aws
51
+ git secrets --scan-history
33
52
34
53
lint :
35
54
strategy :
You can’t perform that action at this time.
0 commit comments