Files
Draupnir/.github/renovate.json5
T
Catalan Lover ce68c68cb6
Docker Hub - Develop / docker-latest (push) Has been skipped
GHCR - Development Branches / ghcr-publish (push) Failing after 32s
Tests / Application Service Integration tests (push) Failing after 13s
Tests / Integration tests (push) Failing after 12m12s
Tests / Unit tests (push) Failing after 12m20s
Tests / Build & Lint (push) Failing after 12m28s
Fix Renovate Config Being Broken
2026-05-20 11:22:07 +00:00

27 lines
844 B
Plaintext

// SPDX-FileCopyrightText: 2024 Aminda Suomalainen <suomalainen@aminda.eu>
// SPDX-FileCopyrightText: 2026 Catalan Lover <catalanlover@protonmail.com>
//
// SPDX-License-Identifier: Apache-2.0
//
// Automerges are false because we need to wait until we have seen this actually attempt to run before we approve it.
// Automerges would anyways only be enabled for minor updates to workflows.
//
{
extends: ["github>the-draupnir-project/.github:renovate-shared"],
packageRules: [
{
matchManagers: ["github-actions"],
matchUpdateTypes: ["major"],
automerge: false,
},
{
matchManagers: ["github-actions"],
pinDigests: true,
minimumReleaseAge: "7 days",
automerge: false,
platformAutomerge: false,
matchUpdateTypes: ["minor", "patch", "pin", "digest", "pinDigest"],
},
],
}