Compare commits

..

9 Commits

Author SHA1 Message Date
daanselen 60cf1e700a Update .gitea/workflows/renovate.yml
renovate / renovate (push) Successful in 54m27s
2026-07-12 10:21:03 +00:00
daanselen 8522943fbf chore: fix syntax
renovate / renovate (push) Successful in 1m43s
2026-06-05 21:05:05 +02:00
daanselen 711445838e chore: disable the rate limit
renovate / renovate (push) Failing after 38s
2026-06-05 21:03:36 +02:00
daanselen 2840affbbb chore: remove automerge
renovate / renovate (push) Successful in 58s
2026-06-05 20:57:39 +02:00
daanselen e91e7881eb chore: add Github token
renovate / renovate (push) Successful in 3m40s
2026-06-05 20:49:40 +02:00
daanselen f5da618e95 chore: fix the forgotten
renovate / renovate (push) Successful in 39s
2026-06-05 20:40:32 +02:00
daanselen 1f8c365519 chore: account for org change
renovate / renovate (push) Failing after 22s
2026-06-05 20:38:36 +02:00
daanselen 64e9e8b7f4 chore: dedicated token
renovate / renovate (push) Successful in 57s
2026-06-05 20:29:44 +02:00
daanselen d570dbf41f feat: init commit
renovate / renovate (push) Failing after 19s
2026-06-05 20:26:49 +02:00
6 changed files with 23 additions and 32 deletions
+3 -5
View File
@@ -11,15 +11,13 @@ on:
jobs: jobs:
renovate: renovate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:43.191.2 container: ghcr.io/renovatebot/renovate:latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- run: renovate - run: renovate
env: env:
RENOVATE_CONFIG_FILE: "/workspace/gitea/renovate-config/config.js" RENOVATE_CONFIG_FILE: "/workspace/nerthus/renovate-config/config.js"
LOG_LEVEL: "debug" LOG_LEVEL: "debug"
RENOVATE_CONFIG_MIGRATION: "true" # ensure all repositories receive config migration PRs RENOVATE_CONFIG_MIGRATION: "true"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }} GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
HUB_DOCKER_COM_USER: ${{ secrets.HUB_DOCKER_COM_USER }}
HUB_DOCKER_COM_TOKEN: ${{ secrets.HUB_DOCKER_COM_TOKEN }}
+1
View File
@@ -1,6 +1,7 @@
MIT License MIT License
Copyright (c) 2023 gitea Copyright (c) 2023 gitea
Copyright (c) 2024 DaanSelen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+8 -8
View File
@@ -23,8 +23,8 @@ Usage:
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"local>gitea/renovate-config", "local>nerthus/renovate-config",
+ "local>gitea/renovate-config:go-deps" + "local>nerthus/renovate-config:go-deps"
] ]
} }
``` ```
@@ -44,8 +44,8 @@ Usage:
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"local>gitea/renovate-config", "local>nerthus/renovate-config",
+ "local>gitea/renovate-config:npm-deps" + "local>nerthus/renovate-config:npm-deps"
] ]
} }
``` ```
@@ -63,8 +63,8 @@ Usage:
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"local>gitea/renovate-config", "local>nerthus/renovate-config",
+ "local>gitea/renovate-config:workflow-deps" + "local>nerthus/renovate-config:workflow-deps"
] ]
} }
``` ```
@@ -82,8 +82,8 @@ Usage:
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"local>gitea/renovate-config", "local>nerthus/renovate-config",
+ "local>gitea/renovate-config:security" + "local>nerthus/renovate-config:security"
] ]
} }
``` ```
+8 -16
View File
@@ -1,24 +1,16 @@
module.exports = { module.exports = {
"endpoint": "https://gitea.com/api/v1", "prConcurrentLimit": 100,
"gitAuthor": "Renovate Bot <renovate-bot@gitea.com>", "branchConcurrentLimit": 100,
"prHourlyLimit": 0,
"prCommitsPerRunLimit": 0,
"endpoint": "https://gitea.nerthus.nl/api/v1",
"gitAuthor": "Renovate Bot <renovate-bot@nerthus.nl>",
"platform": "gitea", "platform": "gitea",
"onboardingConfigFileName": "renovate.json5", "onboardingConfigFileName": "renovate.json5",
"autodiscover": true, "autodiscover": true,
"autodiscoverFilter": ["gitea/*"], "autodiscoverFilter": ["daanselen/\*"],
"optimizeForDisabled": true, "optimizeForDisabled": true,
"forkProcessing": "disabled", "forkProcessing": "disabled",
"dryRun": null, "dryRun": null,
"binarySource": "install", "binarySource": "install"
"hostRules": [
{
"matchHost": "docker.io",
"username": process.env.HUB_DOCKER_COM_USER,
"password": process.env.HUB_DOCKER_COM_TOKEN
}
],
"allowedPostUpgradeCommands": [
// [gitea/helm-chart] Update README.md on dependency changes in values.yaml
"install-tool node",
"make readme"
]
}; };
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended","local>gitea/renovate-config:workflow-deps"], "extends": ["config:recommended","local>nerthus/renovate-config:workflow-deps"],
"configMigration": true, "configMigration": true,
"minimumReleaseAge": "5 days", "minimumReleaseAge": "5 days",
"semanticCommits": "enabled", "semanticCommits": "enabled",
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["gitea/renovate-config"], "extends": ["nerthus/renovate-config"],
"dependencyDashboard": true, "dependencyDashboard": true,
"enabledManagers": [ "enabledManagers": [
"github-actions" "github-actions"
@@ -17,7 +17,7 @@
"description": "Automerge renovate updates", "description": "Automerge renovate updates",
"matchPackageNames": ["renovatebot/renovate"], "matchPackageNames": ["renovatebot/renovate"],
"matchUpdateTypes": ["minor", "patch", "digest"], "matchUpdateTypes": ["minor", "patch", "digest"],
"automerge": true "automerge": false
} }
] ]
} }