<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin. --------- Co-authored-by: Igor Ilic <igorilic03@gmail.com> Co-authored-by: Igor Ilic <30923996+dexters1@users.noreply.github.com>
31 lines
No EOL
913 B
YAML
31 lines
No EOL
913 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)' |