<!-- .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: vasilije <vas.markovic@gmail.com> Co-authored-by: Vasilije <8619304+Vasilije1990@users.noreply.github.com>
26 lines
No EOL
603 B
YAML
26 lines
No EOL
603 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'
|
|
|
|
# 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' |