Files
ghost-docker/.github/renovate.json5
James Loh 91a279fae9 Renovate: Slightly tweak config
ref

- Use best-practices instead of recommended as its the newer default
- Don't rate limit, just slam us
- Use branch merges over PRs where told to
- Pin all deps not just dev ones
- Everything else that was removed is now just included via `config:best-practices`
2025-07-10 16:36:51 +10:00

37 lines
933 B
Plaintext

{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"config:best-practices",
":disableRateLimiting",
":automergeBranch",
":pinDependencies",
":separatePatchReleases",
],
suppressNotifications: ["prIgnoreNotification"],
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",
"ghcr.io/tryghost/activitypub-migrations",
],
pinDigests: false,
},
{
description: "Restrict MySQL to patch updates only within 8.0",
matchDatasources: ["docker", "docker-compose"],
matchPackageNames: ["mysql"],
allowedVersions: "~8.0",
},
],
}