mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-01-26 03:04:10 +00:00
26 lines
457 B
Plaintext
26 lines
457 B
Plaintext
# Gitleaks ignore patterns
|
|
# https://github.com/gitleaks/gitleaks
|
|
|
|
# Ignore test files with dummy secrets
|
|
*/testdata/*
|
|
*/test/*
|
|
*_test.go
|
|
|
|
# Ignore example configurations
|
|
*/examples/*
|
|
*/docs/*
|
|
|
|
# Common false positives
|
|
# Generic test tokens
|
|
test_token_*
|
|
dummy_*
|
|
fake_*
|
|
example_*
|
|
|
|
# GitHub Actions test tokens
|
|
GITHUB_TOKEN=fake_token
|
|
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# Ignore specific lines (use commit:file:line format)
|
|
# abc123:path/to/file.go:42
|