57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended",
|
|
"mergeConfidence:all-badges",
|
|
":rebaseStalePrs"
|
|
],
|
|
"timezone": "US/Central",
|
|
"labels": [],
|
|
"prHourlyLimit": 0,
|
|
"prConcurrentLimit": 0,
|
|
"packageRules": [
|
|
{
|
|
"description": "Label charts",
|
|
"matchDatasources": ["helm"],
|
|
"addLabels": ["chart"],
|
|
"automerge": false,
|
|
"bumpVersions": [
|
|
{
|
|
"filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"],
|
|
"matchStrings": ["version:\\s(?<version>[^\\s]+)"],
|
|
"bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "Label images",
|
|
"matchDatasources": ["docker"],
|
|
"addLabels": ["image"],
|
|
"automerge": false,
|
|
"bumpVersions": [
|
|
{
|
|
"filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"],
|
|
"matchStrings": ["version:\\s(?<version>[^\\s]+)"],
|
|
"bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"description": "Automerge generic-device-plugin image on digest",
|
|
"matchDatasources": ["docker"],
|
|
"matchDepNames": ["ghcr.io/squat/generic-device-plugin"],
|
|
"matchUpdateTypes": ["digest"],
|
|
"addLabels": ["image", "automerge"],
|
|
"automerge": true,
|
|
"minimumReleaseAge": "1 days",
|
|
"bumpVersions": [
|
|
{
|
|
"filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"],
|
|
"matchStrings": ["version:\\s(?<version>[^\\s]+)"],
|
|
"bumpType": "patch"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|