mirror of
https://github.com/d0zingcat/ghost-docker.git
synced 2026-05-13 23:16:44 +00:00
no ref - At the moment this would try and upgrade us to MySQL v9 which we don't officially support
33 lines
765 B
Plaintext
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,
|
|
},
|
|
],
|
|
}
|