|
1 | 1 | { |
2 | | - "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": ["config:recommended"], |
4 | | - "prConcurrentLimit": 5, |
5 | | - "semanticCommits": "enabled", |
6 | | - "customManagers": [ |
7 | | - { |
8 | | - "customType": "regex", |
9 | | - "fileMatch": ["^\\.github\\/workflows\\/[^/]+\\.ya?ml$"], |
10 | | - "matchStrings": ["KIND_VERSION: \"(?<currentValue>.*?)\""], |
11 | | - "datasourceTemplate": "github-tags", |
12 | | - "depNameTemplate": "kubernetes-sigs/kind" |
13 | | - }, |
14 | | - { |
15 | | - "customType": "regex", |
16 | | - "fileMatch": ["^\\.github\\/workflows\\/[^/]+\\.ya?ml$"], |
17 | | - "matchStrings": ["K8S_VERSION: \"(?<currentValue>.*?)\""], |
18 | | - "datasourceTemplate": "docker", |
19 | | - "versioningTemplate": "loose", |
20 | | - "depNameTemplate": "kindest/node" |
21 | | - }, |
22 | | - { |
23 | | - "customType": "regex", |
24 | | - "fileMatch": ["^\\.github\\/workflows\\/[^/]+\\.ya?ml$"], |
25 | | - "matchStrings": ["GOLANG_VERSION: \"(?<currentValue>.*?)\\.x\""], |
26 | | - "datasourceTemplate": "golang-version", |
27 | | - "depNameTemplate": "golang", |
28 | | - "versioningTemplate": "loose", |
29 | | - "extractVersionTemplate": "^(?<version>\\d+\\.\\d+)" |
30 | | - } |
31 | | - ] |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": [ |
| 4 | + "config:recommended" |
| 5 | + ], |
| 6 | + "prConcurrentLimit": 5, |
| 7 | + "semanticCommits": "enabled", |
| 8 | + "customManagers": [ |
| 9 | + { |
| 10 | + "customType": "regex", |
| 11 | + "managerFilePatterns": [ |
| 12 | + "/^\\.github\\/workflows\\/[^/]+\\.ya?ml$/" |
| 13 | + ], |
| 14 | + "matchStrings": [ |
| 15 | + "KIND_VERSION: \"(?<currentValue>.*?)\"" |
| 16 | + ], |
| 17 | + "datasourceTemplate": "github-tags", |
| 18 | + "depNameTemplate": "kubernetes-sigs/kind" |
| 19 | + }, |
| 20 | + { |
| 21 | + "customType": "regex", |
| 22 | + "managerFilePatterns": [ |
| 23 | + "/^\\.github\\/workflows\\/[^/]+\\.ya?ml$/" |
| 24 | + ], |
| 25 | + "matchStrings": [ |
| 26 | + "K8S_VERSION: \"(?<currentValue>.*?)\"" |
| 27 | + ], |
| 28 | + "datasourceTemplate": "docker", |
| 29 | + "versioningTemplate": "loose", |
| 30 | + "depNameTemplate": "kindest/node" |
| 31 | + }, |
| 32 | + { |
| 33 | + "customType": "regex", |
| 34 | + "managerFilePatterns": [ |
| 35 | + "/^\\.github\\/workflows\\/[^/]+\\.ya?ml$/" |
| 36 | + ], |
| 37 | + "matchStrings": [ |
| 38 | + "GOLANG_VERSION: \"(?<currentValue>.*?)\\.x\"" |
| 39 | + ], |
| 40 | + "datasourceTemplate": "golang-version", |
| 41 | + "depNameTemplate": "golang", |
| 42 | + "versioningTemplate": "loose", |
| 43 | + "extractVersionTemplate": "^(?<version>\\d+\\.\\d+)" |
| 44 | + } |
| 45 | + ] |
32 | 46 | } |
0 commit comments