Compare commits

...

2 Commits

Author SHA1 Message Date
a9d867320c Update renovate-config.js
All checks were successful
renovate / renovate (push) Successful in 43s
2026-01-06 05:47:46 +00:00
5fc530e27e Update renovate.json
Some checks failed
renovate / renovate (push) Failing after 37s
2026-01-06 05:41:36 +00:00
2 changed files with 24 additions and 4 deletions

View File

@@ -5,6 +5,7 @@ module.exports = {
"onboardingConfigFileName": "renovate.json", "onboardingConfigFileName": "renovate.json",
"autodiscover": true, "autodiscover": true,
"optimizeForDisabled": true, "optimizeForDisabled": true,
"commitStatus": false, "forkProcessing": "disabled",
"prCreation": "immediate", "dryRun": null,
"binarySource": "install",
}; };

View File

@@ -1,4 +1,23 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["helpers:pinGitHubActionDigests"] "extends": ["gitea/renovate-config"],
"dependencyDashboard": true,
"enabledManagers": [
"github-actions"
],
"automerge": true,
"ignoreTests": true,
"packageRules": [
{
"description": "use fix scope for renovate updates",
"matchPackageNames": ["renovatebot/renovate"],
"semanticCommitType": "fix"
},
{
"description": "Automerge renovate updates",
"matchPackageNames": ["renovatebot/renovate"],
"matchUpdateTypes": ["minor", "patch", "digest"],
"automerge": true
}
]
} }