|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | 3 | "extends": [ |
4 | | - "config:base", |
| 4 | + "config:recommended", |
5 | 5 | ":semanticCommits", |
6 | 6 | ":preserveSemverRanges", |
7 | 7 | ":rebaseStalePrs" |
8 | 8 | ], |
9 | | - "stabilityDays":7, |
| 9 | + "minimumReleaseAge": "7 days", |
10 | 10 | "ignorePaths": [], |
11 | 11 | "labels": ["dependencies"], |
12 | | - "vulnerabilityAlerts":{ |
13 | | - "labels":[ |
14 | | - "type:security" |
15 | | - ], |
16 | | - "stabilityDays":0 |
17 | | - }, |
18 | | - "separateMajorMinor":false, |
19 | | - "constraints": { |
20 | | - "go": "1.20" |
| 12 | + "vulnerabilityAlerts": { |
| 13 | + "labels": ["type:security"], |
| 14 | + "minimumReleaseAge": null |
21 | 15 | }, |
| 16 | + "constraints": {"go": "1.20"}, |
22 | 17 | "packageRules": [ |
23 | 18 | { |
24 | | - "matchPaths": ["examples/**", "test/**", ".github/**"], |
| 19 | + "matchFileNames": ["examples/**", "test/**", ".github/**"], |
25 | 20 | "extends": [":semanticCommitTypeAll(chore)"] |
26 | 21 | }, |
27 | 22 | { |
28 | | - "matchPaths": ["*", "modules/**"], |
| 23 | + "matchFileNames": ["*", "modules/**"], |
29 | 24 | "extends": [":semanticCommitTypeAll(fix)"] |
30 | 25 | }, |
31 | 26 | { |
32 | | - "matchDepTypes": ["module"], |
33 | | - "groupName": "TF modules" |
| 27 | + "matchFileNames": ["*", "modules/**"], |
| 28 | + "matchUpdateTypes": "major", |
| 29 | + "commitMessagePrefix": "fix(deps)!:" |
34 | 30 | }, |
| 31 | + {"matchDepTypes": ["module"], "groupName": "TF modules"}, |
35 | 32 | { |
36 | 33 | "matchDepTypes": ["require"], |
37 | 34 | "groupName": "GO modules", |
|
45 | 42 | }, |
46 | 43 | { |
47 | 44 | "matchPackageNames": ["google", "google-beta"], |
48 | | - "groupName": "terraform googles" |
| 45 | + "groupName": "Terraform Google Provider" |
49 | 46 | } |
50 | 47 | ], |
51 | 48 | "regexManagers": [ |
52 | 49 | { |
53 | 50 | "fileMatch": ["(^|/)Makefile$"], |
54 | | - "matchStrings": ["DOCKER_TAG_VERSION_DEVELOPER_TOOLS := (?<currentValue>.*?)\\n"], |
| 51 | + "matchStrings": [ |
| 52 | + "DOCKER_TAG_VERSION_DEVELOPER_TOOLS := (?<currentValue>.*?)\\n" |
| 53 | + ], |
55 | 54 | "datasourceTemplate": "docker", |
56 | 55 | "registryUrlTemplate": "https://gcr.io/cloud-foundation-cicd", |
57 | 56 | "depNameTemplate": "cft/developer-tools" |
58 | 57 | }, |
59 | 58 | { |
60 | 59 | "fileMatch": ["(^|/)build/(int|lint)\\.cloudbuild\\.yaml$"], |
61 | | - "matchStrings": [" _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '(?<currentValue>.*?)'\\n"], |
| 60 | + "matchStrings": [ |
| 61 | + " _DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '(?<currentValue>.*?)'\\n" |
| 62 | + ], |
62 | 63 | "datasourceTemplate": "docker", |
63 | 64 | "registryUrlTemplate": "https://gcr.io/cloud-foundation-cicd", |
64 | 65 | "depNameTemplate": "cft/developer-tools" |
|
0 commit comments