Skip to content

Commit 9f1d025

Browse files
authored
Merge branch 'master' into fix/promethus-enable
2 parents 7284d55 + 822e8e0 commit 9f1d025

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

.github/renovate.json

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,34 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"config:base",
4+
"config:recommended",
55
":semanticCommits",
66
":preserveSemverRanges",
77
":rebaseStalePrs"
88
],
9-
"stabilityDays":7,
9+
"minimumReleaseAge": "7 days",
1010
"ignorePaths": [],
1111
"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
2115
},
16+
"constraints": {"go": "1.20"},
2217
"packageRules": [
2318
{
24-
"matchPaths": ["examples/**", "test/**", ".github/**"],
19+
"matchFileNames": ["examples/**", "test/**", ".github/**"],
2520
"extends": [":semanticCommitTypeAll(chore)"]
2621
},
2722
{
28-
"matchPaths": ["*", "modules/**"],
23+
"matchFileNames": ["*", "modules/**"],
2924
"extends": [":semanticCommitTypeAll(fix)"]
3025
},
3126
{
32-
"matchDepTypes": ["module"],
33-
"groupName": "TF modules"
27+
"matchFileNames": ["*", "modules/**"],
28+
"matchUpdateTypes": "major",
29+
"commitMessagePrefix": "fix(deps)!:"
3430
},
31+
{"matchDepTypes": ["module"], "groupName": "TF modules"},
3532
{
3633
"matchDepTypes": ["require"],
3734
"groupName": "GO modules",
@@ -45,20 +42,24 @@
4542
},
4643
{
4744
"matchPackageNames": ["google", "google-beta"],
48-
"groupName": "terraform googles"
45+
"groupName": "Terraform Google Provider"
4946
}
5047
],
5148
"regexManagers": [
5249
{
5350
"fileMatch": ["(^|/)Makefile$"],
54-
"matchStrings": ["DOCKER_TAG_VERSION_DEVELOPER_TOOLS := (?<currentValue>.*?)\\n"],
51+
"matchStrings": [
52+
"DOCKER_TAG_VERSION_DEVELOPER_TOOLS := (?<currentValue>.*?)\\n"
53+
],
5554
"datasourceTemplate": "docker",
5655
"registryUrlTemplate": "https://gcr.io/cloud-foundation-cicd",
5756
"depNameTemplate": "cft/developer-tools"
5857
},
5958
{
6059
"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+
],
6263
"datasourceTemplate": "docker",
6364
"registryUrlTemplate": "https://gcr.io/cloud-foundation-cicd",
6465
"depNameTemplate": "cft/developer-tools"

0 commit comments

Comments
 (0)