All checks were successful
Build Image / Build Image (push) Successful in 38s
feat!: remove jb package Reviewed-on: #713 Co-authored-by: GregoryDosh <authentik@gregorydosh.com> Co-committed-by: GregoryDosh <authentik@gregorydosh.com>
23 lines
838 B
Text
23 lines
838 B
Text
// git.auengun.net/homelab/image-renovate
|
|
// Copyright (C) 2024 GregoryDosh
|
|
|
|
// Renovate is the major portion of how the homelab is able
|
|
// to stay up-to-date with minimal amounts of manual tinkering 🤞.
|
|
{
|
|
$schema: "https://docs.renovatebot.com/renovate-schema.json",
|
|
// Renovate takes this configuration file plus the homelab local preset
|
|
// at https://git.auengun.net/renovate-config/renovate-config
|
|
extends: ["local>renovate-config/renovate-config:default.json5"],
|
|
|
|
packageRules: [
|
|
// Automatically merge upstream Renovate updates
|
|
// into this repo to retag & version for internal
|
|
// use with PKI bootstrapped & other tools ready.
|
|
{
|
|
matchDepNames: ["ghcr.io/renovatebot/renovate"],
|
|
addLabels: ["dependencies", "automerge"],
|
|
commitBody: "[automerge]",
|
|
automerge: true,
|
|
},
|
|
],
|
|
}
|