-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathquality-gate.manifest.json
More file actions
50 lines (50 loc) · 1.3 KB
/
quality-gate.manifest.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"$schema": "https://raw.githubusercontent.com/govuk-one-login/quality-gates/refs/tags/v0.2.0/schemas/schema.json",
"services": [
{
"quality-gates": [
{
"check-types": [
"secret scanning"
],
"config": {
"file": ".github/workflows/pre-merge-checks.yaml",
"name": "run secret detection",
"path": "jobs.pre-commit"
},
"phase": "pre-merge",
"provider": "GitHub"
},
{
"check-types": [
"code style and linting",
"unit",
"unit test coverage"
],
"config": {
"file": ".github/workflows/pre-merge-checks.yaml",
"name": "run unit tests",
"path": "jobs.run-tests"
},
"phase": "pre-merge",
"provider": "GitHub"
},
{
"check-types": [
"new feature",
"regression",
"visual regression"
],
"config": {
"file": ".github/workflows/pre-merge-checks.yaml",
"name": "run browser-tests",
"path": "jobs.browser-tests"
},
"phase": "pre-merge",
"provider": "GitHub"
}
],
"service-tag": "ipv-core"
}
]
}