4 Commits

Author SHA1 Message Date
9cf4b70b99 chore(deps): update actions/checkout action to v6 2025-11-22 04:08:43 +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 15 additions and 3 deletions

View File

@@ -13,12 +13,12 @@ on:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41.99.5
container: ghcr.io/renovatebot/renovate:41.43.4
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: renovate
env:
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,
},
],
};