Add rulesets

This commit is contained in:
2025-06-11 06:41:39 +01:00
parent 275baa7b95
commit 3d78c08da4
3 changed files with 85 additions and 0 deletions

38
ansible.json Normal file
View File

@@ -0,0 +1,38 @@
{
"packageRules": [
{
"matchPackageNames": [
"ansible"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"matchPackageNames": [
"ansible-lint"
],
"matchUpdateTypes": [
"major",
"minor",
"patch"
],
"automerge": true
},
{
"matchPackageNames": [
"community.general",
"community.crypto",
"community.digitalocean",
"gantsign.golang"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
}
]
}