2 Commits

Author SHA1 Message Date
a4454b56ce feat: rule for gitea
All checks were successful
renovate / renovate (push) Successful in 8m29s
2025-10-09 19:42:52 +02:00
7cbe0b860a fix: github token
All checks were successful
renovate / renovate (push) Successful in 6m14s
2025-10-09 19:32:37 +02:00

View File

@@ -10,4 +10,16 @@ module.exports = {
},
optimizeForDisabled: true,
persistRepoData: true,
hostRules: [
{
hostType: 'github',
matchHost: 'github.com',
token: process.env.GITHUB_TOKEN,
},
{
hostType: 'gitea',
matchHost: 'gitea.ditmarvisser.net',
token: process.env.RENOVATE_TOKEN,
},
],
};