mirror of
https://github.com/ivuorinen/actions.git
synced 2026-01-26 03:23:59 +00:00
22 lines
499 B
TOML
22 lines
499 B
TOML
[allowlist]
|
|
description = "Allowlisted files"
|
|
paths = [
|
|
'''node_modules''',
|
|
'''.git''',
|
|
'''dist''',
|
|
'''yarn.lock''',
|
|
'''package-lock.json''',
|
|
'''pnpm-lock.yaml'''
|
|
]
|
|
|
|
[rules]
|
|
[rules.github-token]
|
|
description = "GitHub Token"
|
|
regex = '''ghp_[0-9a-zA-Z]{36}'''
|
|
tags = ["token", "github"]
|
|
|
|
[rules.secrets]
|
|
description = "Generic Secret Pattern"
|
|
regex = '''(?i)(secret|token|key|password|cert)[\s]*[=:]\s*['"][^'"]*['"]'''
|
|
tags = ["key", "secret"]
|