mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-06-03 14:24:02 +00:00
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
27 lines
844 B
Plaintext
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"],
|
|
},
|
|
],
|
|
}
|