Skip to content

Commit 6247ece

Browse files
chore: secrets scanning (#144)
1 parent 67f137e commit 6247ece

3 files changed

Lines changed: 22 additions & 0 deletions

File tree

.circleci/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2.1
2+
3+
orbs:
4+
prodsec: snyk/prodsec-orb@1.0
5+
6+
workflows:
7+
version: 2
8+
CICD:
9+
jobs:
10+
- prodsec/secrets-scan:
11+
name: Scan repository for secrets
12+
context:
13+
- snyk-bot-slack
14+
channel: hammerhead-alerts

.gitleaksignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# add false positives here

.pre-commit-config.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
repos:
4+
- repo: https://github.com/gitleaks/gitleaks
5+
rev: v8.17.0
6+
hooks:
7+
- id: gitleaks

0 commit comments

Comments
 (0)