Skip to content

Commit 62b5096

Browse files
authored
deps: migrate config .github/renovate.json5 (#594)
1 parent fbac8aa commit 62b5096

File tree

1 file changed

+44
-33
lines changed

1 file changed

+44
-33
lines changed

.github/renovate.json5

+44-33
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,54 @@
11
{
2-
"extends": [
3-
"config:recommended",
4-
"helpers:pinGitHubActionDigests",
5-
":separateMajorReleases",
6-
":combinePatchMinorReleases",
7-
":ignoreUnstable",
8-
":prImmediately",
9-
":updateNotScheduled",
10-
":automergeDisabled",
11-
":ignoreModulesAndTests",
12-
":maintainLockFilesDisabled"
2+
extends: [
3+
'config:recommended',
4+
'helpers:pinGitHubActionDigests',
5+
':separateMajorReleases',
6+
':combinePatchMinorReleases',
7+
':ignoreUnstable',
8+
':prImmediately',
9+
':updateNotScheduled',
10+
':automergeDisabled',
11+
':ignoreModulesAndTests',
12+
':maintainLockFilesDisabled',
1313
],
14-
"commitMessagePrefix": "deps: ",
15-
"semanticCommits": "enabled",
16-
"dependencyDashboard": true,
17-
"dependencyDashboardLabels": ["type: process"],
18-
"ignorePaths": [".kokoro/requirements.txt"],
19-
"ignoreDeps": [
20-
"org.graalvm.sdk:graal-sdk",
21-
"ch.qos.logback:logback-classic"
14+
commitMessagePrefix: 'deps: ',
15+
semanticCommits: 'enabled',
16+
dependencyDashboard: true,
17+
dependencyDashboardLabels: [
18+
'type: process',
2219
],
23-
"packageRules": [
20+
ignorePaths: [
21+
'.kokoro/requirements.txt',
22+
],
23+
ignoreDeps: [
24+
'org.graalvm.sdk:graal-sdk',
25+
'ch.qos.logback:logback-classic',
26+
],
27+
packageRules: [
2428
{
25-
"groupName": "Non-major dependencies",
26-
"matchManagers": ["maven"],
27-
"matchUpdateTypes": ["minor", "patch"],
29+
groupName: 'Non-major dependencies',
30+
matchManagers: [
31+
'maven',
32+
],
33+
matchUpdateTypes: [
34+
'minor',
35+
'patch',
36+
],
2837
},
2938
{
30-
"groupName": "dependencies for github",
31-
"matchManagers": ["github-actions"],
32-
"commitMessagePrefix": "chore(deps):"
39+
groupName: 'dependencies for github',
40+
matchManagers: [
41+
'github-actions',
42+
],
43+
commitMessagePrefix: 'chore(deps):',
3344
},
3445
{
35-
"groupName": "JUnit dependencies",
36-
"matchPackagePatterns": [
37-
"^org.junit.platform:junit-platform-engine",
38-
"^org.junit.platform:junit-platform-commons",
39-
"^org.junit.vintage:junit-vintage-engine",
40-
]
46+
groupName: 'JUnit dependencies',
47+
matchPackageNames: [
48+
'/^org.junit.platform:junit-platform-engine/',
49+
'/^org.junit.platform:junit-platform-commons/',
50+
'/^org.junit.vintage:junit-vintage-engine/',
51+
],
4152
},
42-
]
53+
],
4354
}

0 commit comments

Comments
 (0)