Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e6dccd2

Browse files
committedNov 25, 2024··
chore: Use Renovate to update README dependencies
1 parent 28c6473 commit e6dccd2

File tree

1 file changed

+32
-17
lines changed

1 file changed

+32
-17
lines changed
 

‎.github/renovate.json

+32-17
Original file line numberDiff line numberDiff line change
@@ -4,65 +4,80 @@
44
"labels": ["dependencies"],
55
"prConcurrentLimit": 0,
66
"prHourlyLimit": 0,
7+
"separateMultipleMajor": true,
78
"schedule": ["* 0-7 * * 1"],
9+
"packageRules": [
10+
{
11+
"groupName": "Ansible collections",
12+
"matchManagers": [
13+
"ansible-galaxy",
14+
"regex"
15+
]
16+
}
17+
],
818
"ansible-galaxy": {
919
"fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.ya?ml$"],
1020
"packageRules": [
1121
{
12-
"matchPackageNames": ["*"],
13-
"groupName": "Ansible collections"
14-
},
15-
{
16-
"matchUpdateTypes": ["minor", "patch"],
22+
"automerge": true,
1723
"matchCurrentVersion": "!/^0/",
18-
"automerge": true
24+
"matchUpdateTypes": ["minor", "patch"]
1925
}
2026
]
2127
},
28+
"customManagers": [
29+
{
30+
"customType": "regex",
31+
"datasourceTemplate": "galaxy-collection",
32+
"fileMatch": ["README.md"],
33+
"matchStrings": ["- name: (?<depName>\\w+\\.\\w+)(?:\\s+#.*)?\\s+version: (?<currentValue>\\d+\\.\\d+\\.\\d+)"],
34+
"versioningTemplate": "semver"
35+
}
36+
],
2237
"dockerfile": {
2338
"ignorePaths": ["molecule/**/Dockerfile.j2"]
2439
},
2540
"github-actions": {
2641
"addLabels": ["skip-changelog"],
2742
"packageRules": [
2843
{
44+
"groupName": "GitHub Actions",
2945
"matchPackageNames": [
3046
"actions/**",
3147
"github/**"
32-
],
33-
"groupName": "GitHub Actions"
48+
]
3449
},
3550
{
36-
"matchPackageNames": ["docker/**"],
37-
"groupName": "Docker Actions"
51+
"groupName": "Docker Actions",
52+
"matchPackageNames": ["docker/**"]
3853
},
3954
{
4055
"enabled": false,
4156
"matchUpdateTypes": ["digest"]
4257
},
4358
{
59+
"automerge": true,
4460
"matchUpdateTypes": ["minor", "patch"],
45-
"matchCurrentVersion": "!/^0/",
46-
"automerge": true
61+
"matchCurrentVersion": "!/^0/"
4762
}
4863
]
4964
},
5065
"pip_requirements": {
5166
"fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.(txt|pip)$"],
5267
"packageRules": [
5368
{
54-
"matchPackageNames": ["*"],
55-
"groupName": "Python dependencies"
69+
"groupName": "Python dependencies",
70+
"matchPackageNames": ["*"]
5671
},
5772
{
58-
"matchPackageNames": ["ansible-core"],
5973
"groupName": "Ansible core",
74+
"matchPackageNames": ["ansible-core"],
6075
"separateMinorPatch": true
6176
},
6277
{
78+
"automerge": true,
6379
"matchUpdateTypes": ["patch"],
64-
"matchCurrentVersion": "!/^0/",
65-
"automerge": true
80+
"matchCurrentVersion": "!/^0/"
6681
}
6782
]
6883
}

0 commit comments

Comments
 (0)
Please sign in to comment.