|
1 | 1 | { |
2 | | - "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": [ |
4 | | - "config:recommended", |
5 | | - ":gitSignOff", |
6 | | - ":semanticCommitType(chore)", |
7 | | - ":labels(automated,no-issue)", |
8 | | - "regexManagers:githubActionsVersions", |
9 | | - ":automergeMinor" |
| 2 | + $schema: 'https://docs.renovatebot.com/renovate-schema.json', |
| 3 | + extends: [ |
| 4 | + 'config:recommended', |
| 5 | + ':gitSignOff', |
| 6 | + ':semanticCommitType(chore)', |
| 7 | + ':labels(automated,no-issue)', |
| 8 | + 'customManagers:githubActionsVersions', |
| 9 | + ':automergeMinor', |
10 | 10 | ], |
11 | | - "prConcurrentLimit": 5, |
12 | | - "ignorePaths": [ |
13 | | - "docs/**", |
14 | | - "pkg/**/*.pb.go" |
| 11 | + prConcurrentLimit: 5, |
| 12 | + ignorePaths: [ |
| 13 | + 'docs/**', |
| 14 | + 'pkg/**/*.pb.go', |
15 | 15 | ], |
16 | | - "postUpdateOptions": [ |
17 | | - "gomodTidy" |
| 16 | + postUpdateOptions: [ |
| 17 | + 'gomodTidy', |
18 | 18 | ], |
19 | | - "semanticCommits": "enabled", |
20 | | - "commitBodyTable": true, |
21 | | - "customManagers": [ |
| 19 | + semanticCommits: 'enabled', |
| 20 | + commitBodyTable: true, |
| 21 | + customManagers: [ |
22 | 22 | { |
23 | | - "customType": "regex", |
24 | | - "fileMatch": [ |
25 | | - "(^.*\\.go$)" |
| 23 | + customType: 'regex', |
| 24 | + fileMatch: [ |
| 25 | + '(^.*\\.go$)', |
| 26 | + ], |
| 27 | + matchStrings: [ |
| 28 | + '\\/\\/ renovate image: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?\\s+\\/\\/\\s+\\+default=["\']?[^:]+:(?<currentValue>.+?)["\']?\\s', |
26 | 29 | ], |
27 | | - "matchStrings": [ |
28 | | - "\\/\\/ renovate image: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?\\s+\\/\\/\\s+\\+default=[\"']?[^:]+:(?<currentValue>.+?)[\"']?\\s" |
29 | | - ] |
30 | 30 | }, |
31 | 31 | { |
32 | | - "customType": "regex", |
33 | | - "fileMatch": [ |
34 | | - "(^protoc-gen-go-grpc/dagger/main\\.go$)" |
| 32 | + customType: 'regex', |
| 33 | + fileMatch: [ |
| 34 | + '(^protoc-gen-go-grpc/dagger/main\\.go$)', |
| 35 | + ], |
| 36 | + matchStrings: [ |
| 37 | + '\\/\\/ renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?\\s+\\/\\/\\s+\\+default=["\']?(?<currentValue>.+?)["\']?\\s', |
35 | 38 | ], |
36 | | - "matchStrings": [ |
37 | | - "\\/\\/ renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?\\s+\\/\\/\\s+\\+default=[\"']?(?<currentValue>.+?)[\"']?\\s" |
38 | | - ] |
39 | 39 | }, |
40 | 40 | { |
41 | | - "customType": "regex", |
42 | | - "fileMatch": [ |
43 | | - "(^.*dagger\\.json$)" |
| 41 | + customType: 'regex', |
| 42 | + fileMatch: [ |
| 43 | + '(^.*dagger\\.json$)', |
44 | 44 | ], |
45 | | - "matchStrings": [ |
46 | | - "\"engineVersion\": \"(?<currentValue>.+?)\"" |
| 45 | + matchStrings: [ |
| 46 | + '"engineVersion": "(?<currentValue>.+?)"', |
47 | 47 | ], |
48 | | - "datasourceTemplate": "github-tags", |
49 | | - "depNameTemplate": "dagger/dagger" |
50 | | - } |
| 48 | + datasourceTemplate: 'github-tags', |
| 49 | + depNameTemplate: 'dagger/dagger', |
| 50 | + }, |
51 | 51 | ], |
52 | | - "packageRules": [ |
| 52 | + packageRules: [ |
53 | 53 | { |
54 | | - "matchDatasources": [ |
55 | | - "go" |
| 54 | + matchDatasources: [ |
| 55 | + 'go', |
56 | 56 | ], |
57 | | - "matchPackagePatterns": [ |
58 | | - "*" |
| 57 | + matchUpdateTypes: [ |
| 58 | + 'minor', |
| 59 | + 'patch', |
| 60 | + 'digest', |
59 | 61 | ], |
60 | | - "matchUpdateTypes": [ |
61 | | - "minor", |
62 | | - "patch", |
63 | | - "digest" |
| 62 | + groupName: 'all non-major go dependencies', |
| 63 | + matchPackageNames: [ |
| 64 | + '*', |
64 | 65 | ], |
65 | | - "groupName": "all non-major go dependencies" |
66 | | - } |
67 | | - ] |
| 66 | + }, |
| 67 | + ], |
68 | 68 | } |
0 commit comments