This repository was archived by the owner on Nov 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrenovate.json
64 lines (64 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
{
"$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 and additionalBranchPrefix for test/",
"matchPaths": ["test/"],
"additionalBranchPrefix": "test-",
"semanticCommitType": "test"
},
{
"description": "Trigger fix release for ubuntu digest updates",
"matchPackageNames": ["ubuntu"],
"matchUpdateTypes": ["digest"],
"semanticCommitType": "fix"
},
{
"description": "Keep testing dotnet v3",
"matchPackageNames": ["dotnet"],
"matchCurrentVersion": "^3.0",
"allowedVersions": "^3.0"
},
{
"description": "Trigger fix release for git updates",
"matchPackageNames": ["git"],
"semanticCommitType": "fix",
"stabilityDays": 5
},
{
"description": "Trigger fix release for buildpack updates",
"matchPackageNames": ["containerbase/buildpack"],
"semanticCommitType": "fix"
}
]
}