-
Notifications
You must be signed in to change notification settings - Fork 479
Expand file tree
/
Copy pathrenovate.json
More file actions
87 lines (87 loc) 路 3.01 KB
/
Copy pathrenovate.json
File metadata and controls
87 lines (87 loc) 路 3.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests"
],
"branchPrefix": "chore/",
"dependencyDashboard": true,
"prConcurrentLimit": 5,
"prHourlyLimit": 2,
"rebaseWhen": "behind-base-branch",
"separateMinorPatch": true,
"minimumReleaseAge": "3 days",
"ignorePaths": [
".rpm-packaging/**",
"ors-test-scenarios/src/test/resources/**",
"**/node_modules/**"
],
"ignoreDeps": [
"org.heigit.ors:openrouteservice",
"com.fasterxml.jackson.datatype:jackson-datatype-jts"
],
"packageRules": [
{
"description": "Every major waits for a human tick on the Dependency Dashboard",
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
},
{
"description": "Runtime JDK stays on Corretto 21 LTS (pom targets Java 17)",
"matchDatasources": ["docker"],
"matchPackageNames": ["docker.io/amazoncorretto"],
"allowedVersions": "<22"
},
{
"description": "Spring Boot stays on 3.x. Spring Boot 4 needs migration.",
"matchPackageNames": ["org.springframework.boot:spring-boot-starter-parent"],
"allowedVersions": "<4"
},
{
"description": "springdoc stays on 2.x. springdoc 3.x requires Spring Boot 4.",
"matchPackageNames": ["org.springdoc:springdoc-openapi-starter-webmvc-ui"],
"allowedVersions": "<3"
},
{
"description": "commons-cli 2.0-gt2-pre1 is a fork and a false positive. Not an Apache release.",
"matchPackageNames": ["commons-cli:commons-cli"],
"allowedVersions": "!/-gt2/"
},
{
"description": "graphhopper-core is prebuilt against hppc 0.8.x (uses HashOrderMixing, removed in hppc 0.9). Bumping past 0.8.x breaks graph building at runtime unless graphhopper.version is upgraded too.",
"matchPackageNames": ["com.carrotsearch:hppc"],
"allowedVersions": "<0.9"
},
{
"description": "All patch updates in one PR",
"matchUpdateTypes": ["patch"],
"groupName": "all patch dependencies",
"labels": ["dependencies", "build"]
},
{
"description": "All minor updates in one PR",
"matchUpdateTypes": ["minor"],
"groupName": "all minor dependencies",
"labels": ["dependencies", "build"]
},
{
"description": "The published image stays reviewable on its own",
"matchManagers": ["dockerfile"],
"matchFileNames": ["Dockerfile"],
"groupName": "docker base images",
"pinDigests": true,
"labels": ["dependencies", "container :whale:", "security"]
},
{
"description": "Workflow YAML is a different review surface than the POMs",
"matchManagers": ["github-actions"],
"groupName": "github actions",
"labels": ["dependencies", "ci"]
},
{
"description": "MUST stay last. overrides config:recommended's fix(deps) TO chore so dependency PRs can stay out of the hand-curated CHANGELOG",
"matchPackageNames": ["*"],
"semanticCommitType": "chore"
}
]
}