This repository was archived by the owner on Apr 13, 2023. It is now read-only.
File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This file matches because of "βrazil nut" (It's silly that git secrets also scans this file, so we cannot write βrazil with a regular "B")
2
+ javaHapiValidatorLambda/src/test/resources/testImplementationGuides-r4/us-core/ValueSet-us-core-allergy-substance.json
Original file line number Diff line number Diff line change 33
33
yarn release
34
34
cd ..
35
35
yarn release
36
+
37
+ scan-for-secrets :
38
+ name : Scan for secrets
39
+ runs-on : ubuntu-latest
40
+ steps :
41
+ - name : Install Git Secrets
42
+ run : |
43
+ cd ~
44
+ git clone https://github.com/awslabs/git-secrets.git && cd git-secrets
45
+ sudo make install
46
+ git secrets --register-aws --global
47
+ git secrets --add '[aA]pollo|[bB]razil|[cC]oral|[oO]din' --global
48
+ git secrets --add 'tt\.amazon\.com|t\.corp\.amazon\.com|issues\.amazon\.com|sim\.amazon\.com|cr\.amazon\.com' --global
49
+ - name : Checkout
50
+ uses : actions/checkout@v2
51
+ - name : Run Git Secrets
52
+ run : git secrets --scan
53
+ - name : Print remediation message
54
+ if : failure()
55
+ run : echo "git secrets found potential leaked credentials. If ANY credentials were committed, they MUST be immediately revoked."
You can’t perform that action at this time.
0 commit comments