-
Notifications
You must be signed in to change notification settings - Fork 6
/
renovate.json
53 lines (53 loc) · 1.54 KB
/
renovate.json
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
{
"extends": [
"config:base",
":semanticCommits",
":semanticCommitTypeAll(build)",
":semanticCommitScopeDisabled",
"schedule:nonOfficeHours"
],
"automergeType": "branch",
"automerge": true,
"dependencyDashboard": false,
"gitLabIgnoreApprovals": true,
"rangeStrategy": "pin",
"postUpdateOptions": [
"gomodTidy"
],
"gitlabci": {
"fileMatch": [
"^\\.gitlab\\/ci\\/.*\\.yml$"
]
},
"commitBody": "Issue: nlx#1171",
"packageRules": [
{
"groupName": "used for E2E-tests. more recent versions only support ESM which causes issues while importing into TypeScript",
"packageNames": ["p-wait-for"],
"managers": ["npm"],
"allowedVersions": "3.2.0"
},
{
"groupName": "React v18 - wait until all our dependencies support v18 https://gitlab.com/commonground/nlx/nlx/-/merge_requests/3587",
"packageNames": ["react", "react-dom"],
"enabled": false
},
{
"groupName": "React v18 - these dependencies support v18 but break support for v17",
"packageNames": ["@testing-library/react"],
"enabled": false
},
{
"groupName": "Dex - v2.36.0 introduces regression. See https://github.com/dexidp/dex/issues/2875",
"managers": ["docker-compose"],
"packageNames": ["dexidp/dex"],
"allowedVersions": "2.35.3"
},
{
"groupName": "Dex - v1.14.0 introduces regression. See https://github.com/dexidp/dex/issues/2875",
"managers": ["helmv3"],
"packageNames": ["dex"],
"allowedVersions": "0.12.1"
}
]
}