mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-05-25 00:35:17 +00:00
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
* 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
28 lines
883 B
Plaintext
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"],
|
|
},
|
|
],
|
|
}
|