4 Commits

Author SHA1 Message Date
5d292d73c6 chore(deps): update ghcr.io/renovatebot/renovate docker tag to v42 2025-11-22 04:08:45 +00:00
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
de447fc717 fix typo
All checks were successful
renovate / renovate (push) Successful in 46s
2025-10-09 19:18:15 +02:00
2 changed files with 14 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ on:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41.60.2
container: ghcr.io/renovatebot/renovate:42.19.3
steps:
- uses: actions/checkout@v4
- run: renovate
@@ -21,4 +21,4 @@ jobs:
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_GITHUB_COM_TOKEN: ${{ secret.RENOVATE_GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}

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