All checks were successful
Deploy Ansible Pipeline / Deploy Ansible Pipeline (push) Successful in 53s
feat: licensing refactor fix: update gitignore for logs files (license check in ci) Reviewed-on: #163 Co-authored-by: GregoryDosh <authentik@gregorydosh.com> Co-committed-by: GregoryDosh <authentik@gregorydosh.com>
47 lines
2.1 KiB
Text
47 lines
2.1 KiB
Text
// Private Forgejo instance for managing/automating Auengun.net
|
|
// Source available at git.auengun.net/homelab/host-git
|
|
// Copyright (C) 2024 GregoryDosh
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
// SPDX-FileCopyrightText: 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: [
|
|
// The intent of this is to help Renovate manage a version bump
|
|
// like `1.21.11-1-rootless` -> `1.21.11-2-rootless` gracefullly.
|
|
{
|
|
matchDatasources: ["docker"],
|
|
matchPackageNames: ["codeberg.org/forgejo/forgejo"],
|
|
versioning: "regex:^(?<major>\\d+)\\.(?<minor>\\d+)(\\.(?<patch>\\d+))?(-(?<revision>\\d+))?(-(?<compatibility>.*))?$?$",
|
|
},
|
|
],
|
|
|
|
// This exclusion is to prevent Renovate from touching things
|
|
// that I prefer to stay static. I appreciate what it's trying
|
|
// to accomplish but I take a small detour to use the custom managers instead.
|
|
// https://docs.renovatebot.com/configuration-options/#custommanagers
|
|
//
|
|
// Look for comments in the `Makefile` and `.forgejo/workflows/*.yml`
|
|
// that begin with `# renovate:` to see which lines in are watched.
|
|
ignorePaths: ["templates/**"],
|
|
}
|