forked from renovatebot/docker-buildpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
51 lines (51 loc) · 1.5 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>containerbase/.github"],
"ignorePaths": [],
"packageRules": [
{
"description": "Don't hold back any PRs for approval",
"matchPackagePatterns": ["*"],
"dependencyDashboardApproval": false
},
{
"description": "Disable all managers in test/ by default",
"matchPaths": ["test/"],
"enabled": false
},
{
"description": "Enable the regex manager only for test/",
"matchPaths": ["test/"],
"matchManagers": ["regex"],
"enabled": true
},
{
"description": "Separate patch updates in test/ so that we can automerge them",
"matchPaths": ["test/"],
"automergeType": "branch",
"separateMinorPatch": true
},
{
"description": "Don't automerge test minor/major because we might want to retain old versions in tests too",
"matchPaths": ["test/"],
"matchUpdateTypes": ["minor", "major"],
"automerge": false
},
{
"description": "Use `test` semantic commit scope for test/",
"matchPaths": ["test/"],
"semanticCommitType": "test"
},
{
"description": "Override erlang version extraction",
"matchPackageNames": ["erlang"],
"extractVersion": "^OTP-(?<version>.+)$"
},
{
"description": "Trigger fix release for ubuntu digest updates",
"matchPackageNames": ["ubuntu"],
"matchUpdateTypes": ["digest"],
"semanticCommitType": "fix"
}
]
}