Compare commits
9 Commits
08ffd01063
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 60cf1e700a | |||
| 8522943fbf | |||
| 711445838e | |||
| 2840affbbb | |||
| e91e7881eb | |||
| f5da618e95 | |||
| 1f8c365519 | |||
| 64e9e8b7f4 | |||
| d570dbf41f |
@@ -11,15 +11,13 @@ on:
|
||||
jobs:
|
||||
renovate:
|
||||
runs-on: ubuntu-latest
|
||||
container: ghcr.io/renovatebot/renovate:43.191.2
|
||||
container: ghcr.io/renovatebot/renovate:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- run: renovate
|
||||
env:
|
||||
RENOVATE_CONFIG_FILE: "/workspace/gitea/renovate-config/config.js"
|
||||
RENOVATE_CONFIG_FILE: "/workspace/nerthus/renovate-config/config.js"
|
||||
LOG_LEVEL: "debug"
|
||||
RENOVATE_CONFIG_MIGRATION: "true" # ensure all repositories receive config migration PRs
|
||||
RENOVATE_CONFIG_MIGRATION: "true"
|
||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_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,6 +1,7 @@
|
||||
MIT License
|
||||
|
||||
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:
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@ Usage:
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"local>gitea/renovate-config",
|
||||
+ "local>gitea/renovate-config:go-deps"
|
||||
"local>nerthus/renovate-config",
|
||||
+ "local>nerthus/renovate-config:go-deps"
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -44,8 +44,8 @@ Usage:
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"local>gitea/renovate-config",
|
||||
+ "local>gitea/renovate-config:npm-deps"
|
||||
"local>nerthus/renovate-config",
|
||||
+ "local>nerthus/renovate-config:npm-deps"
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -63,8 +63,8 @@ Usage:
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"local>gitea/renovate-config",
|
||||
+ "local>gitea/renovate-config:workflow-deps"
|
||||
"local>nerthus/renovate-config",
|
||||
+ "local>nerthus/renovate-config:workflow-deps"
|
||||
]
|
||||
}
|
||||
```
|
||||
@@ -82,8 +82,8 @@ Usage:
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"local>gitea/renovate-config",
|
||||
+ "local>gitea/renovate-config:security"
|
||||
"local>nerthus/renovate-config",
|
||||
+ "local>nerthus/renovate-config:security"
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
@@ -1,24 +1,16 @@
|
||||
module.exports = {
|
||||
"endpoint": "https://gitea.com/api/v1",
|
||||
"gitAuthor": "Renovate Bot <renovate-bot@gitea.com>",
|
||||
"prConcurrentLimit": 100,
|
||||
"branchConcurrentLimit": 100,
|
||||
"prHourlyLimit": 0,
|
||||
"prCommitsPerRunLimit": 0,
|
||||
"endpoint": "https://gitea.nerthus.nl/api/v1",
|
||||
"gitAuthor": "Renovate Bot <renovate-bot@nerthus.nl>",
|
||||
"platform": "gitea",
|
||||
"onboardingConfigFileName": "renovate.json5",
|
||||
"autodiscover": true,
|
||||
"autodiscoverFilter": ["gitea/*"],
|
||||
"autodiscoverFilter": ["daanselen/\*"],
|
||||
"optimizeForDisabled": true,
|
||||
"forkProcessing": "disabled",
|
||||
"dryRun": null,
|
||||
"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"
|
||||
]
|
||||
"binarySource": "install"
|
||||
};
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"$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,
|
||||
"minimumReleaseAge": "5 days",
|
||||
"semanticCommits": "enabled",
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": ["gitea/renovate-config"],
|
||||
"extends": ["nerthus/renovate-config"],
|
||||
"dependencyDashboard": true,
|
||||
"enabledManagers": [
|
||||
"github-actions"
|
||||
@@ -17,7 +17,7 @@
|
||||
"description": "Automerge renovate updates",
|
||||
"matchPackageNames": ["renovatebot/renovate"],
|
||||
"matchUpdateTypes": ["minor", "patch", "digest"],
|
||||
"automerge": true
|
||||
"automerge": false
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user