|
78 | 78 | }, |
79 | 79 | { |
80 | 80 | "description": "Group packages from Kubernetes together", |
81 | | - "matchSourceUrls": ["https://github.com/kubernetes/{/,}**"], |
| 81 | + "matchSourceUrls": ["https://github.com/kubernetes/**"], |
82 | 82 | "matchUpdateTypes": ["patch", "minor", "major"], |
83 | 83 | "matchPackageNames": ["!/ingress-nginx/", "!/minikube/"], |
84 | 84 | "groupName": "kubernetes" |
|
112 | 112 | "matchUpdateTypes": ["patch", "minor", "major"], |
113 | 113 | "semanticCommitType": "build" |
114 | 114 | }, |
115 | | - { |
116 | | - "matchFileNames": ["Dockerfile"], |
117 | | - "semanticCommitType": "build" |
118 | | - } |
| 115 | + { "matchFileNames": ["Dockerfile"], "semanticCommitType": "build" } |
119 | 116 | ], |
120 | 117 | "customManagers": [ |
121 | 118 | { |
122 | 119 | "description": "Update _VERSION variables in Makefiles", |
123 | 120 | "customType": "regex", |
124 | | - "fileMatch": ["(^|/)Makefile$"], |
| 121 | + "managerFilePatterns": ["/(^|/)Makefile$/"], |
125 | 122 | "matchStrings": [ |
126 | 123 | "# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)(?: (?:packageName)=(?<packageName>.+?))?(?: versioning=(?<versioning>.+?))?(?: extractVersion=(?<extractVersion>.+?))?\\s[A-Z_]+?_VERSION .?= (?<currentValue>.+?)\\s" |
127 | 124 | ] |
128 | 125 | }, |
129 | 126 | { |
130 | 127 | "description": "Update _VERSION variables in shell scripts", |
131 | 128 | "customType": "regex", |
132 | | - "fileMatch": ["\\.sh$"], |
| 129 | + "managerFilePatterns": ["/\\.sh$/"], |
133 | 130 | "matchStrings": [ |
134 | 131 | "# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)(?: (?:packageName)=(?<packageName>.+?))?(?: versioning=(?<versioning>.+?))?(?: extractVersion=(?<extractVersion>.+?))?\\s[A-Z_]+?_VERSION=('|\")?(?<currentValue>.+?)('|\")?\\s" |
135 | 132 | ] |
136 | 133 | }, |
137 | 134 | { |
138 | 135 | "description": "Update Golang in .go-version file", |
139 | 136 | "customType": "regex", |
140 | | - "fileMatch": ["(^|/)\\.go-version$"], |
| 137 | + "managerFilePatterns": ["/(^|/)\\.go-version$/"], |
141 | 138 | "matchStrings": ["^\\s*(?<currentValue>.+?)\\s*$"], |
142 | 139 | "depNameTemplate": "golang", |
143 | 140 | "datasourceTemplate": "golang-version" |
144 | 141 | }, |
145 | 142 | { |
146 | 143 | "description": "Update Rust stable version in rust-toolchain.toml", |
147 | 144 | "customType": "regex", |
148 | | - "fileMatch": ["(^|/)rust-toolchain\\.toml$"], |
| 145 | + "managerFilePatterns": ["/(^|/)rust-toolchain\\.toml$/"], |
149 | 146 | "matchStrings": ["channel\\s*=\\s*('|\")(?<currentValue>.+?)('|\")\\s"], |
150 | 147 | "depNameTemplate": "rust", |
151 | 148 | "packageNameTemplate": "rust-lang/rust", |
|
0 commit comments