|
5 | 5 | "prConcurrentLimit": 0,
|
6 | 6 | "prHourlyLimit": 0,
|
7 | 7 | "schedule": ["* 0-7 * * 1"],
|
| 8 | + "packageRules": [ |
| 9 | + { |
| 10 | + "groupName": "Ansible collections", |
| 11 | + "matchPackageNames": ["*"], |
| 12 | + "managers": [ |
| 13 | + "ansible-galaxy", |
| 14 | + "regex" |
| 15 | + ], |
| 16 | + "additionalBranchPrefix": "", |
| 17 | + "packageRules": [ |
| 18 | + { |
| 19 | + "automerge": true, |
| 20 | + "matchCurrentVersion": "!/^0/", |
| 21 | + "matchUpdateTypes": ["minor", "patch"] |
| 22 | + } |
| 23 | + ] |
| 24 | + } |
| 25 | + ], |
8 | 26 | "ansible-galaxy": {
|
9 |
| - "fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.ya?ml$"], |
10 |
| - "packageRules": [ |
11 |
| - { |
12 |
| - "matchPackageNames": ["*"], |
13 |
| - "groupName": "Ansible collections" |
14 |
| - }, |
15 |
| - { |
16 |
| - "matchUpdateTypes": ["minor", "patch"], |
17 |
| - "matchCurrentVersion": "!/^0/", |
18 |
| - "automerge": true |
19 |
| - } |
20 |
| - ] |
| 27 | + "fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.ya?ml$"] |
21 | 28 | },
|
| 29 | + "customManagers": [ |
| 30 | + { |
| 31 | + "customType": "regex", |
| 32 | + "datasourceTemplate": "galaxy-collection", |
| 33 | + "fileMatch": ["README.md"], |
| 34 | + "matchStrings": ["- name: (?<depName>\\w+\\.\\w+)(?:\\s+#.*)?\\s+version: (?<currentValue>\\d+\\.\\d+\\.\\d+)"], |
| 35 | + "versioningTemplate": "semver" |
| 36 | + } |
| 37 | + ], |
22 | 38 | "dockerfile": {
|
23 | 39 | "ignorePaths": ["molecule/**/Dockerfile.j2"]
|
24 | 40 | },
|
25 | 41 | "github-actions": {
|
26 | 42 | "addLabels": ["skip-changelog"],
|
27 | 43 | "packageRules": [
|
28 | 44 | {
|
| 45 | + "groupName": "GitHub Actions", |
29 | 46 | "matchPackageNames": [
|
30 | 47 | "actions/**",
|
31 | 48 | "github/**"
|
32 |
| - ], |
33 |
| - "groupName": "GitHub Actions" |
| 49 | + ] |
34 | 50 | },
|
35 | 51 | {
|
36 |
| - "matchPackageNames": ["docker/**"], |
37 |
| - "groupName": "Docker Actions" |
| 52 | + "groupName": "Docker Actions", |
| 53 | + "matchPackageNames": ["docker/**"] |
38 | 54 | },
|
39 | 55 | {
|
40 | 56 | "enabled": false,
|
41 | 57 | "matchUpdateTypes": ["digest"]
|
42 | 58 | },
|
43 | 59 | {
|
| 60 | + "automerge": true, |
44 | 61 | "matchUpdateTypes": ["minor", "patch"],
|
45 |
| - "matchCurrentVersion": "!/^0/", |
46 |
| - "automerge": true |
| 62 | + "matchCurrentVersion": "!/^0/" |
47 | 63 | }
|
48 | 64 | ]
|
49 | 65 | },
|
50 | 66 | "pip_requirements": {
|
51 | 67 | "fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.(txt|pip)$"],
|
52 | 68 | "packageRules": [
|
53 | 69 | {
|
54 |
| - "matchPackageNames": ["*"], |
55 |
| - "groupName": "Python dependencies" |
| 70 | + "groupName": "Python dependencies", |
| 71 | + "matchPackageNames": ["*"] |
56 | 72 | },
|
57 | 73 | {
|
58 |
| - "matchPackageNames": ["ansible-core"], |
59 | 74 | "groupName": "Ansible core",
|
| 75 | + "matchPackageNames": ["ansible-core"], |
60 | 76 | "separateMinorPatch": true
|
61 | 77 | },
|
62 | 78 | {
|
| 79 | + "automerge": true, |
63 | 80 | "matchUpdateTypes": ["patch"],
|
64 |
| - "matchCurrentVersion": "!/^0/", |
65 |
| - "automerge": true |
| 81 | + "matchCurrentVersion": "!/^0/" |
66 | 82 | }
|
67 | 83 | ]
|
68 | 84 | }
|
|
0 commit comments