Skip to content

Commit 8bf1b69

Browse files
chore: Configure Renovate (#788)
Co-Authored-By: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-Authored-By: Alessandro Fael Garcia <[email protected]>
1 parent 866037f commit 8bf1b69

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

Diff for: .github/renovate.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["config:recommended"],
4+
"labels": ["dependencies"],
5+
"prConcurrentLimit": 0,
6+
"prHourlyLimit": 0,
7+
"schedule": ["* 0-7 * * 1"],
8+
"ansible-galaxy": {
9+
"fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.ya?ml$"],
10+
"packageRules": [
11+
{
12+
"matchPackageNames": ["*"],
13+
"groupName": "Ansible collections"
14+
}
15+
]
16+
},
17+
"dockerfile": {
18+
"ignorePaths": ["molecule/**/Dockerfile.j2"]
19+
},
20+
"github-actions": {
21+
"addLabels": ["skip-changelog"],
22+
"packageRules": [
23+
{
24+
"matchPackageNames": [
25+
"actions/**",
26+
"github/**"
27+
],
28+
"groupName": "GitHub Actions"
29+
},
30+
{
31+
"matchPackageNames": ["docker/**"],
32+
"groupName": "Docker Actions"
33+
}
34+
]
35+
},
36+
"pip_requirements": {
37+
"fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.(txt|pip)$"],
38+
"packageRules": [
39+
{
40+
"matchPackageNames": ["*"],
41+
"groupName": "Python dependencies"
42+
}
43+
]
44+
}
45+
}

Diff for: .github/workflows/requirements/requirements_collections.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ collections:
44
version: 1.5.4
55
- name: community.general
66
version: 9.2.0
7-
- name: community.crypto # Only required if you plan to install NGINX Plus
7+
- name: community.crypto
88
version: 2.21.1
9-
- name: community.docker # Only required if you plan to use Molecule
9+
- name: community.docker
1010
version: 3.11.0

0 commit comments

Comments
 (0)