|
34 | 34 | "packageRules": [
|
35 | 35 | {
|
36 | 36 | "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 | + ], |
38 | 41 | "matchFileNames": [
|
39 |
| - "(^|/|\\.)Dockerfile$", |
40 |
| - "(^|/)Dockerfile\\.[^/]*$" |
| 42 | + "/(^|\\/)[^/]*Dockerfile(\\.[^/]*)?$/" |
41 | 43 | ],
|
42 |
| - "matchDatasources":[ |
43 |
| - "repology" |
| 44 | + "matchDatasources": [ |
| 45 | + "/^repology$/" |
44 | 46 | ],
|
45 |
| - "matchDepNames":[ |
46 |
| - "debian_12/.*" |
47 |
| - ] |
| 47 | + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], |
| 48 | + "automerge": true |
48 | 49 | },
|
49 | 50 | {
|
50 | 51 | "description": "Group all pypi dependencies in Dockerfiles",
|
51 |
| - "groupName": "docker_pypi", |
| 52 | + "groupName": "python packages in docker files", |
52 | 53 | "matchFileNames": [
|
53 |
| - "(^|/|\\.)Dockerfile$", |
54 |
| - "(^|/)Dockerfile\\.[^/]*$" |
| 54 | + "/(^|\\/)[^/]*Dockerfile(\\.[^/]*)?$/" |
55 | 55 | ],
|
56 | 56 | "matchDatasources": [
|
57 |
| - "pypi" |
58 |
| - ] |
| 57 | + "/^pypi$/" |
| 58 | + ], |
| 59 | + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], |
| 60 | + "automerge": true |
59 | 61 | },
|
60 | 62 | {
|
61 | 63 | "description": "Group all deps in workflow files",
|
62 |
| - "groupName": "workflow", |
| 64 | + "groupName": "github actions", |
63 | 65 | "matchManagers": [
|
64 | 66 | "github-actions"
|
65 |
| - ] |
| 67 | + ], |
| 68 | + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], |
| 69 | + "automerge": true |
66 | 70 | }
|
67 | 71 | ]
|
68 | 72 | }
|
0 commit comments