761f62055e
Add a package rule in `renovate.json` to disable updates for the `registry.gitlab.com/unboundsoftware/schemas-app` package managed by Kubernetes. This change is implemented to prevent unwanted updates for this specific package, ensuring stability in the deployment process.
18 lines
325 B
JSON
18 lines
325 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"matchManagers": [
|
|
"kubernetes"
|
|
],
|
|
"matchPackageNames": [
|
|
"registry.gitlab.com/unboundsoftware/schemas-app"
|
|
],
|
|
"enabled": false
|
|
}
|
|
]
|
|
}
|