Files
podman/.github/renovate.json5
Paul Holzinger e8b835dad1 renovate: point config to new repo
We have a new config in the automation repo under
podman-container-tools, see
https://github.com/podman-container-tools/automation/pull/29

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2026-07-07 19:25:08 +02:00

47 lines
1.3 KiB
Plaintext

/*
Validate this file before committing with (from repository root):
podman run -it \
-v ./.github/renovate.json5:/usr/src/app/renovate.json5:z \
ghcr.io/renovatebot/renovate:latest \
renovate-config-validator
and/or use the pre-commit hook: https://github.com/renovatebot/pre-commit-hooks
*/
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
/*************************************************
****** Global/general configuration options *****
*************************************************/
// Reuse predefined sets of configuration options to DRY
"extends": [
// https://github.com/podman-container-tools/automation/blob/main/renovate/defaults.json5
"github>podman-container-tools/automation//renovate/defaults.json5"
],
/*************************************************
*** Repository-specific configuration options ***
*************************************************/
"ignorePaths": [
"**/vendor/**",
"**/docs/**",
],
"addLabels": ["release-note-none"],
// N/B: LAST matching rule wins
"packageRules": [
// Updates for `github.com/containers/*` should be checked more frequently than other deps.
{
"matchCategories": ["golang"],
"schedule": "before 11am",
"matchPackageNames": ["github.com/containers{/,}**"]
},
],
}