forked from renovatebot/renovate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
54 lines (54 loc) · 1.41 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
54
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>renovatebot/.github"],
"assignees": ["rarkins", "viceice"],
"semanticCommitScope": "deps",
"automergeType": "pr",
"prCreation": "immediate",
"dockerfile": {
"semanticCommitType": "build"
},
"packageRules": [
{
"matchPackageNames": ["containerbase/node"],
"versioning": "node"
},
{
"matchDepTypes": ["dependencies", "optionalDependencies"],
"semanticCommitType": "build"
},
{
"matchPackageNames": ["semantic-release"],
"semanticCommitType": "build"
},
{
"matchPackageNames": ["@types/jest"],
"groupName": "jest monorepo"
},
{
"matchFileNames": ["**/__fixtures__/**"],
"enabled": false
},
{
"description": "set fix scope for base image",
"matchDepNames": ["ghcr.io/renovatebot/base-image"],
"semanticCommitType": "fix"
},
{
"description": "set feat scope for base image major",
"matchDepNames": ["ghcr.io/renovatebot/base-image"],
"matchUpdateTypes": ["major", "minor"],
"semanticCommitType": "feat"
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["config/options/index.ts"],
"matchStrings": [
"default: '(?<depName>ghcr.io/containerbase/sidecar):(?<currentValue>.*)'"
],
"datasourceTemplate": "docker"
}
]
}