Compare commits

..

11 Commits

Author SHA1 Message Date
222365463a Update .gitea/workflows/renovate.yaml
All checks were successful
renovate / renovate (push) Successful in 3m46s
2026-05-15 19:24:28 +00:00
07001a035d Update Renovate config: enable optimizeForDisabled and remove autodiscoverAll
All checks were successful
renovate / renovate (push) Successful in 3m18s
2026-04-02 23:21:35 +02:00
769edbece6 Enhance Renovate config: add schema reference, enable autodiscoverAll, and set requireConfig to ignored
All checks were successful
renovate / renovate (push) Successful in 2m13s
2026-04-02 23:15:38 +02:00
890df9099e Add base Renovate configuration and update bot settings
All checks were successful
renovate / renovate (push) Successful in 2m6s
2026-04-02 23:09:24 +02:00
0394e4faf8 Switch config.js properties to use quoted keys and update stabilityDays to minimumReleaseAge
All checks were successful
renovate / renovate (push) Successful in 2m11s
2026-04-02 22:23:15 +02:00
fac8aba327 Update Renovate config to reference spenke-nordic-ab preset
All checks were successful
renovate / renovate (push) Successful in 3m34s
2026-04-02 22:16:00 +02:00
c29494cbc5 Set up Renovate configuration with default and Docker-specific presets. Updated bot settings and added README.
All checks were successful
renovate / renovate (push) Successful in 3m22s
2026-04-02 22:09:34 +02:00
c419a2e503 Update renovate.json
Some checks are pending
renovate / renovate (push) Waiting to run
2026-04-02 19:59:55 +00:00
bff8a0de1a Update default.json
All checks were successful
renovate / renovate (push) Successful in 7m40s
2026-04-02 17:42:29 +00:00
60878ef557 Update .gitea/workflows/renovate.yaml
Some checks failed
renovate / renovate (push) Has been cancelled
2026-04-02 17:38:08 +00:00
71bedba355 Update .gitea/workflows/renovate.yaml
All checks were successful
renovate / renovate (push) Successful in 3m17s
2026-04-02 15:52:30 +00:00
7 changed files with 85 additions and 8 deletions

View File

@@ -16,6 +16,6 @@ jobs:
- run: renovate - run: renovate
env: env:
RENOVATE_CONFIG_FILE: "/workspace/spenke-nordic-ab/renovate-config/config.js" # replace it with your config.js path RENOVATE_CONFIG_FILE: "/workspace/spenke-nordic-ab/renovate-config/config.js" # replace it with your config.js path
LOG_LEVEL: "warn" LOG_LEVEL: "info"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_COM_TOKEN }} GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_COM_TOKEN }}

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.idea

27
README.md Normal file
View File

@@ -0,0 +1,27 @@
# Renovate Configuration
Base Renovate configuration for the self-hosted Gitea instance at `spenke-nordic.com`.
## Usage
Extend this configuration in your repository's `renovate.json`:
```json
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>spenke-nordic-ab/renovate-config"
]
}
```
## Presets
- `default`: Base configuration with standard rules.
- `docker`: Specific rules for Docker images.
- `npm`: Specific rules for Node.js packages.
- `github-actions`: Rules for GitHub/Gitea Actions.
## Bot Configuration
The bot is configured via `config.js` to run on the `gitea` platform.

View File

@@ -1,8 +1,21 @@
module.exports = { module.exports = {
"endpoint": "https://gitea.spenke-nordic.com/api/v1", // replace it with your actual endpoint "endpoint": "https://gitea.spenke-nordic.com/api/v1",
"gitAuthor": "Renovate Bot <renovate-bot@spenke-nordic.com>", "gitAuthor": "Renovate Bot <renovate-bot@spenke-nordic.com>",
"platform": "gitea", "platform": "gitea",
"onboardingConfigFileName": "renovate.json", "onboarding": true,
"autodiscover": true, "onboardingConfig": {
"optimizeForDisabled": true, "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>spenke-nordic-ab/renovate-config"]
},
"onboardingConfigFileName": "renovate.json",
"autodiscover": true,
"autodiscoverFilter": ["spenke-nordic-ab/*"],
"requireConfig": "ignored",
"optimizeForDisabled": true,
"dependencyDashboard": true,
"dependencyDashboardTitle": "Dependency Dashboard",
"prConcurrentLimit": 10,
"prHourlyLimit": 0,
"minimumReleaseAge": "3 days",
"labels": ["dependencies", "renovate"]
}; };

19
default.json Normal file
View File

@@ -0,0 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Base configuration with standard rules",
"extends": [
"config:recommended",
":dependencyDashboard",
":separateMajorReleases",
":combinePatchMinorReleases",
"group:allNonMajor"
],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
}
]
}

14
docker.json Normal file
View File

@@ -0,0 +1,14 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Docker specific rules",
"extends": [
"docker:pinDigests"
],
"packageRules": [
{
"matchDatasources": ["docker"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}
]
}

View File

@@ -1,3 +1,6 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json" "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>spenke-nordic-ab/renovate-config"
]
} }