-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathwarden.toml
More file actions
33 lines (28 loc) · 696 Bytes
/
warden.toml
File metadata and controls
33 lines (28 loc) · 696 Bytes
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
version = 1
[defaults]
# Fail check on high+ severity findings (critical, high)
failOn = "high"
# Show annotations for medium+ severity findings
reportOn = "medium"
# Exclude build output from all skills
ignorePaths = ["dist/**", "evals/**"]
[[skills]]
name = "security-review"
paths = [
"src/**/*.ts",
".github/workflows/*.yml",
".github/workflows/*.yaml",
".github/actions/**/*.yml",
".github/actions/**/*.yaml",
"action.yml",
"action.yaml",
]
ignorePaths = ["src/**/*.test.ts"]
[[skills.triggers]]
type = "pull_request"
actions = ["opened", "synchronize", "reopened"]
[[skills]]
name = "code-simplifier"
remote = "getsentry/sentry-skills"
[[skills.triggers]]
type = "local"