Files
Draupnir/.github/renovate.json5
Catalan Lover 5c8f6a30a1
Docker Hub - Develop / docker-latest (push) Failing after 1m0s
GHCR - Development Branches / ghcr-publish (push) Failing after 28s
Tests / Build & Lint (push) Failing after 3m43s
Tests / Unit tests (push) Successful in 3m4s
Tests / Integration tests (push) Failing after 15s
Tests / Application Service Integration tests (push) Failing after 12s
Pin our CI to Sha Digests instead of moving version tags and add Renovate maintenance for this. (#1134)
* Move all workflows to digest pinned versioning.

* Infrastructure Upgrades for Automatic Reonvate CI PRs

* Add minimum release age at 7 days for renovate CI updates
2026-05-17 12:07:19 +02:00

28 lines
883 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"],
enabledManagers: ["github-actions"],
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"],
},
],
}