Files
ghost-docker/.github/renovate.json5
James Loh a081853573 Disable Major docker upgrades
no ref

- At the moment this would try and upgrade us to MySQL v9 which we don't officially support
2025-07-10 16:23:01 +10:00

33 lines
765 B
Plaintext

{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
":enableRenovate",
"config:recommended",
":dependencyDashboard",
":separatePatchReleases",
"docker:pinDigests",
],
enabled: true,
dependencyDashboard: true,
suppressNotifications: ["prIgnoreNotification"],
automergeType: "branch",
packageRules: [
{
description: "Auto-merge initial digest pinning",
matchDatasources: ["docker", "github-tags"],
matchUpdateTypes: ["pinDigest"],
automerge: true,
},
{
description: "Don't pin Ghost images till we have v1",
matchDatasources: ["docker", "docker-compose"],
matchPackageNames: [
"ghost",
"ghost/traffic-analytics",
"ghcr.io/tryghost/activitypub",
],
pinDigests: false,
},
],
}