-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-Authored-By: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-Authored-By: Alessandro Fael Garcia <[email protected]>
- Loading branch information
1 parent
866037f
commit 6961947
Showing
2 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:recommended"], | ||
"labels": ["dependencies"], | ||
"prConcurrentLimit": 0, | ||
"prHourlyLimit": 0, | ||
"schedule": ["* 0-7 * * 1"], | ||
"ansible-galaxy": { | ||
"fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.ya?ml$"], | ||
"packageRules": [ | ||
{ | ||
"matchPackageNames": ["*"], | ||
"groupName": "Ansible collections" | ||
} | ||
] | ||
}, | ||
"dockerfile": { | ||
"ignorePaths": ["molecule/**/Dockerfile.j2"] | ||
}, | ||
"github-actions": { | ||
"addLabels": ["skip-changelog"], | ||
"packageRules": [ | ||
{ | ||
"matchPackageNames": [ | ||
"actions/**", | ||
"github/**" | ||
], | ||
"groupName": "GitHub Actions" | ||
}, | ||
{ | ||
"matchPackageNames": ["docker/**"], | ||
"groupName": "Docker Actions" | ||
} | ||
] | ||
}, | ||
"pip_requirements": { | ||
"fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.(txt|pip)$"], | ||
"packageRules": [ | ||
{ | ||
"matchPackageNames": ["*"], | ||
"groupName": "Python dependencies" | ||
} | ||
] | ||
} | ||
} |