Skip to content

Commit 0aef59d

Browse files
authored
Fix renovate config (#87)
Signed-off-by: Andreas Heinrich <andreas.heinrich@rwth-aachen.de>
1 parent a4d04ef commit 0aef59d

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

.github/renovate.json

+19-15
Original file line numberDiff line numberDiff line change
@@ -34,35 +34,39 @@
3434
"packageRules": [
3535
{
3636
"description": "Group all debian_12 dependencies in Dockerfiles",
37-
"groupName": "docker_debian_12",
37+
"groupName": "debian 12 packages in docker files",
38+
"matchPackageNames": [
39+
"/^debian_12/"
40+
],
3841
"matchFileNames": [
39-
"(^|/|\\.)Dockerfile$",
40-
"(^|/)Dockerfile\\.[^/]*$"
42+
"/(^|\\/)[^/]*Dockerfile(\\.[^/]*)?$/"
4143
],
42-
"matchDatasources":[
43-
"repology"
44+
"matchDatasources": [
45+
"/^repology$/"
4446
],
45-
"matchDepNames":[
46-
"debian_12/.*"
47-
]
47+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
48+
"automerge": true
4849
},
4950
{
5051
"description": "Group all pypi dependencies in Dockerfiles",
51-
"groupName": "docker_pypi",
52+
"groupName": "python packages in docker files",
5253
"matchFileNames": [
53-
"(^|/|\\.)Dockerfile$",
54-
"(^|/)Dockerfile\\.[^/]*$"
54+
"/(^|\\/)[^/]*Dockerfile(\\.[^/]*)?$/"
5555
],
5656
"matchDatasources": [
57-
"pypi"
58-
]
57+
"/^pypi$/"
58+
],
59+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
60+
"automerge": true
5961
},
6062
{
6163
"description": "Group all deps in workflow files",
62-
"groupName": "workflow",
64+
"groupName": "github actions",
6365
"matchManagers": [
6466
"github-actions"
65-
]
67+
],
68+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
69+
"automerge": true
6670
}
6771
]
6872
}

0 commit comments

Comments
 (0)