31 lines
914 B
YAML
31 lines
914 B
YAML
# .gitguardian.yml
|
|
version: v1
|
|
|
|
secret-scan:
|
|
# Ignore specific files
|
|
excluded-paths:
|
|
- '.env.template'
|
|
- '.github/workflows/*.yml'
|
|
- 'examples/**'
|
|
- 'tests/**'
|
|
|
|
# Ignore specific patterns
|
|
excluded-detectors:
|
|
- 'Generic Password'
|
|
- 'Generic High Entropy Secret'
|
|
|
|
# Ignore by commit (if needed)
|
|
excluded-commits:
|
|
- '782bbb4'
|
|
- 'f857e07'
|
|
|
|
# Custom rules for template files
|
|
paths-ignore:
|
|
- path: '.env.template'
|
|
comment: 'Template file with placeholder values'
|
|
- path: '.github/workflows/search_db_tests.yml'
|
|
comment: 'Test workflow with test credentials'
|
|
- path: 'docker-compose.yml'
|
|
comment: 'Development docker compose with test credentials (neo4j/pleaseletmein, postgres cognee/cognee)'
|
|
- path: 'deployment/helm/docker-compose-helm.yml'
|
|
comment: 'Helm deployment docker compose with test postgres credentials (cognee/cognee)'
|