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
2 changed files with 13 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ on:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41.143.2
container: ghcr.io/renovatebot/renovate:41.43.4
steps:
- uses: actions/checkout@v4
- run: renovate

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,
},
],
};