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