Merge pull request 'Better defaults' (#10) from config-improvements into main
All checks were successful
renovate / renovate (push) Successful in 34s

Reviewed-on: #10
This commit is contained in:
vbrandl 2024-04-18 16:31:19 +02:00
commit c0ceed6020
3 changed files with 8 additions and 4 deletions

View File

@ -19,4 +19,5 @@ jobs:
RENOVATE_CONFIG_FILE: "config.js"
GITHUB_COM_TOKEN: ${{ secrets.GH_COM_TOKEN }}
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_ONBOARDING_CONFIG: '{"$$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:recommended"] }'
RENOVATE_ONBOARDING_CONFIG: '{"$$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["local>renovate-bot/renovate-config"] }'

View File

@ -2,8 +2,10 @@ module.exports = {
"endpoint": "https://git.vbrandl.net/api/v1",
"gitAuthor": "Renovate Bot <renovate@vbrandl.net>",
"platform": "gitea",
"onboardingConfigFileName": "renovate.json",
"onboardingConfigFileName": "renovate.json5",
"autodiscover": true,
"forkProcessing": "disabled",
"dryRun": null,
"optimizeForDisabled": true,
"automerge": false,
};

View File

@ -1,7 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>renovatebot/.github", ":dependencyDashboard"],
"prCreation": "immediate",
"extends": ["config:recommended"],
"semanticCommits": "enabled",
"automerge": false,
"nix": {
"enabled": false
}