-
Notifications
You must be signed in to change notification settings - Fork 2
/
conf.yml
45 lines (42 loc) · 1.22 KB
/
conf.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
github_config:
orgs_to_scan:
# this is an array of github orgs to scan
- LivingInSynTestOrg
# if set to > 1 it will scan repos pushed to in the last `n` days,
# if set to <= 0, it will scan all repos, might be a lot of repos!
days_to_scan: -1
gitlab_config:
orgs_to_scan:
# this is an array of gitlab orgs to scan
days_to_scan: -1
# additional arguments can be passed to gitleaks here:
# gitleaks_config:
# additional_args:
# - foo=1
# - bar=2
skip_repos: #an array of repos to skip
- some_org/some_repo
ignore_secret_pattern:
# an array of secret **matches** to ignore, this is a different
# string than the secret.
# these are regexes
# - '^.*key_id:.*'
- '^.*key_id:.*'
ignore_secrets:
# this is an array of secrets to ignore
# example would be a sample secret used
# in documentation
- '0xDEADBEEF'
ignore_commits:
# this is an array of commits to ignore
- 'c0a4e7c1208fb49c28b2979fe68985ddac696a6e'
repo_ignore:
# this is a dict of arrays that let you specify files
# to ignore in a repository with a regular expression
some_org/some_repo:
- 'docs/.*'
output:
# supported formats are markdown and json
format: markdown
# max number of repos to scan at the same time
max_concurrency: 20