|
1 | 1 | {
|
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', |
13 | 13 | ],
|
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', |
22 | 19 | ],
|
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: [ |
24 | 28 | {
|
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 | + ], |
28 | 37 | },
|
29 | 38 | {
|
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):', |
33 | 44 | },
|
34 | 45 | {
|
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 | + ], |
41 | 52 | },
|
42 |
| - ] |
| 53 | + ], |
43 | 54 | }
|
0 commit comments