mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-03-22 18:03:53 +00:00
- Added 10 fingerprints to .gitleaksignore for test tokens in historical commits - Broadened .gitleaks.toml path allowlist to cover all *_test.go files
16 lines
431 B
TOML
16 lines
431 B
TOML
title = "gh-action-readme gitleaks configuration"
|
|
|
|
[extend]
|
|
useDefault = true
|
|
|
|
# Allowlist for test files and fixtures that intentionally contain placeholder tokens.
|
|
# These are not real secrets and are used only for testing purposes.
|
|
[allowlist]
|
|
description = "Test fixture files containing placeholder tokens"
|
|
paths = [
|
|
'''^testutil/test_constants\.go$''',
|
|
'''^testdata/''',
|
|
'''_test\.go$''',
|
|
'''^integration_test\.go$''',
|
|
]
|