-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquality-gate.manifest.json
More file actions
54 lines (54 loc) · 1.63 KB
/
quality-gate.manifest.json
File metadata and controls
54 lines (54 loc) · 1.63 KB
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
46
47
48
49
50
51
52
53
54
{
"$schema": "https://raw.githubusercontent.com/govuk-one-login/quality-gates/refs/tags/v0.1.0/schemas/schema.json",
"services": [
{
"quality-gates": [
{
"check-types": ["unit", "code style and linting", "vulnerability detection", "code quality"],
"phase": "pre-merge",
"provider": "GitHub",
"config": {
"file": ".github/workflows/test-and-validate.yml",
"name": "Test and validate iac and lambdas"
}
},
{
"check-types": [
"unit test coverage",
"code quality",
"secret scanning",
"sensitive data scanning",
"vulnerability detection"
],
"config": {
"file": ".github/workflows/code-quality-sonarcloud.yml",
"name": "SonarCloud Code Analysis"
},
"phase": "pre-merge",
"provider": "GitHub"
},
{
"check-types": [
"vulnerability detection"
],
"config": {
"file": ".github/workflows/ensure-sha-pinned-actions.yml",
"name": "Ensure SHA pinned actions"
},
"phase": "pre-merge",
"provider": "GitHub"
},
{
"check-types": ["unit", "code style and linting", "vulnerability detection", "code quality"],
"phase": "pre-upload",
"provider": "GitHub",
"config": {
"file": ".github/workflows/test-and-validate.yml",
"name": "Test and validate iac and lambdas"
}
}
],
"service-tag": "data-dpt"
}
]
}