Skip to content

Commit 5839238

Browse files
Update renovate.json
1 parent 87fc091 commit 5839238

File tree

1 file changed

+25
-16
lines changed

1 file changed

+25
-16
lines changed

.github/renovate.json

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,42 @@
55
],
66
"prConcurrentLimit": 10,
77
"prHourlyLimit": 20,
8+
9+
// Enable the Dependency Dashboard
810
"dependencyDashboard": true,
911
"dependencyDashboardApproval": false,
10-
"vulnerabilityAlerts": {
11-
"enabled": false
12-
},
12+
13+
// Disable vulnerability alerts integration (avoids warning)
14+
"vulnerabilityAlerts": false,
15+
16+
// Explicitly enable both Maven and GitHub Actions managers
17+
"enabledManagers": ["maven", "github-actions"],
18+
1319
"packageRules": [
1420
{
15-
"description": "Update the Maven property rosetta.dsl.version when com.regnosys.rosetta releases a new version",
16-
"matchManagers": [
17-
"maven"
18-
],
21+
"description": "Highlight and prioritize rosetta.dsl.version updates",
22+
"matchManagers": ["maven"],
1923
"matchPackageNames": [
2024
"com.regnosys.rosetta:com.regnosys.rosetta",
2125
"rosetta.dsl.version"
2226
],
23-
"enabled": true
27+
"labels": ["rosetta"],
28+
"prPriority": 1, // higher priority PRs
29+
"automerge": false // keep manual review
30+
},
31+
{
32+
"description": "Label GitHub Actions updates",
33+
"matchManagers": ["github-actions"],
34+
"labels": ["github-actions"]
2435
},
2536
{
26-
"description": "Disable all Maven dependencies except the specified ones",
27-
"matchManagers": [
28-
"maven"
37+
"description": "Label all other Maven dependency updates",
38+
"matchManagers": ["maven"],
39+
"excludePackageNames": [
40+
"com.regnosys.rosetta:com.regnosys.rosetta",
41+
"rosetta.dsl.version"
2942
],
30-
"enabled": false,
31-
"matchPackageNames": [
32-
"!com.regnosys.rosetta:com.regnosys.rosetta",
33-
"!rosetta.dsl.version"
34-
]
43+
"labels": ["maven"]
3544
}
3645
]
3746
}

0 commit comments

Comments
 (0)