Compare commits

..

1 commit

Author SHA1 Message Date
Renovate Bot
81bd4e9f09 configure renovate
Some checks reported errors
continuous-integration/drone/push Build was killed
2025-04-30 17:23:25 +02:00
3 changed files with 18 additions and 26 deletions

View file

@ -1,10 +1,5 @@
root = true root = true
[*]
indent_style = space
[*.yml] [*.yml]
indent_size = 2 indent_size = 2
indent_style = space
[*.json]
indent_size = 2

View file

@ -1,9 +1,6 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"], "extends": [
"packageRules": [ "config:recommended"
{
"groupName": "all dependencies"
}
] ]
} }

View file

@ -1,19 +1,19 @@
// This file only contains "backend" administration settings for renovate, // This file only contains "backend" administration settings for renovate,
// such as where to access the forgejo api etc. // such as where to access the forgejo api etc.
// To configure how renovate updates dependencies, see `renovate.json`. // To configure how renovate creates update PRs, have a look at `renovate.json`.
module.exports = { module.exports = {
endpoint: "https://git.local-it.org/api/v1/", endpoint: "https://git.local-it.org/api/v1/",
gitAuthor: "Renovate Bot <renovate@local-it.org>", gitAuthor: "Renovate Bot <renovate@local-it.org>",
username: "renovate", username: "renovate",
platform: "gitea", platform: "gitea",
onboarding: true, onboarding: true,
autodiscover: true, autodiscover: true,
persistRepoData: true, persistRepoData: true,
optimizeForDisabled: true, optimizeForDisabled: true,
assignees: [], assignees: [],
labels: ["renovate", "dependencies", "automated"], labels: ["renovate", "dependencies", "automated"],
onboardingConfig: { onboardingConfig: {
extends: ["config:recommended"], extends: ["config:recommended"],
}, },
repositories: ["local-it/mitgliederverwaltung"], repositories: ["local-it/mitgliederverwaltung"],
}; };