|
1 | 1 | { |
2 | | - "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": [ |
4 | | - "config:best-practices", |
5 | | - "helpers:pinGitHubActionDigestsToSemver" |
| 2 | + $schema: 'https://docs.renovatebot.com/renovate-schema.json', |
| 3 | + extends: [ |
| 4 | + 'config:best-practices', |
| 5 | + 'helpers:pinGitHubActionDigestsToSemver', |
6 | 6 | ], |
7 | | - "packageRules": [ |
| 7 | + packageRules: [ |
8 | 8 | { |
9 | 9 | // this is to reduce the number of renovate PRs by consolidating them into a weekly batch |
10 | | - "matchManagers": ["github-actions"], |
11 | | - "extends": ["schedule:weekly"], |
12 | | - "groupName": "github actions" |
| 10 | + matchManagers: [ |
| 11 | + 'github-actions', |
| 12 | + ], |
| 13 | + extends: [ |
| 14 | + 'schedule:weekly', |
| 15 | + ], |
| 16 | + groupName: 'github actions', |
13 | 17 | }, |
14 | 18 | { |
15 | 19 | // pin opentelemetry-api dependency to: avoid churn, for conservative api version requirement, |
16 | 20 | // and because opentelemetry-api is a compileOnly dependency |
17 | | - "matchPackageNames": ["io.opentelemetry:opentelemetry-api"], |
18 | | - "matchCurrentVersion": "1.33.0", |
19 | | - "enabled": false |
20 | | - } |
| 21 | + matchPackageNames: [ |
| 22 | + 'io.opentelemetry:opentelemetry-api', |
| 23 | + ], |
| 24 | + matchCurrentVersion: '1.33.0', |
| 25 | + enabled: false, |
| 26 | + }, |
21 | 27 | ], |
22 | | - "customManagers": [ |
| 28 | + customManagers: [ |
23 | 29 | { |
24 | | - "customType": "regex", |
25 | | - "datasourceTemplate": "docker", |
26 | | - "fileMatch": [ |
27 | | - "^build.gradle.kts$" |
| 30 | + customType: 'regex', |
| 31 | + datasourceTemplate: 'docker', |
| 32 | + managerFilePatterns: [ |
| 33 | + '/^build.gradle.kts$/', |
28 | 34 | ], |
29 | | - "matchStrings": [ |
30 | | - "\"(?<depName>otel/weaver):(?<currentValue>[^\"]+)\"" |
31 | | - ] |
32 | | - } |
33 | | - ] |
| 35 | + matchStrings: [ |
| 36 | + '"(?<depName>otel/weaver):(?<currentValue>[^"]+)"', |
| 37 | + ], |
| 38 | + }, |
| 39 | + ], |
34 | 40 | } |
0 commit comments