image-forgejo-runner/.renovaterc.json5
GregoryDosh 3f6b82905e
All checks were successful
Build Image / Build Image (push) Successful in 30s
feat(renovate): ignore ansible >11 for now
2024-12-15 14:19:48 -06:00

18 lines
594 B
Text

// git.auengun.net/homelab/image-forgejo-runner
// Copyright (C) 2024 GregoryDosh
// Renovate is the major portion of how the homelab is able
// to stay up-to-date with minimal amounts of manual tinkering 🤞.
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
// Renovate takes this configuration file plus the homelab local preset
// at https://git.auengun.net/renovate-config/renovate-config
extends: ["local>renovate-config/renovate-config:default.json5"],
packageRules: [
{
matchPackageNames: ["ansible"],
"allowedVersions": "<11",
},
],
}