mirror of
https://github.com/d0zingcat/ghost-docker.git
synced 2026-05-15 15:09:49 +00:00
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`
37 lines
933 B
Plaintext
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",
|
|
},
|
|
],
|
|
}
|