Compare commits
9 Commits
49b2285005
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 60cf1e700a | |||
| 8522943fbf | |||
| 711445838e | |||
| 2840affbbb | |||
| e91e7881eb | |||
| f5da618e95 | |||
| 1f8c365519 | |||
| 64e9e8b7f4 | |||
| d570dbf41f |
@@ -11,15 +11,13 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
renovate:
|
renovate:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: ghcr.io/renovatebot/renovate:43.179.4
|
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,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:
|
||||||
|
|
||||||
|
|||||||
@@ -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"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -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"
|
|
||||||
]
|
|
||||||
};
|
};
|
||||||
|
|||||||
+3
-1
@@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"$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,
|
||||||
|
"minimumReleaseAge": "5 days",
|
||||||
"semanticCommits": "enabled",
|
"semanticCommits": "enabled",
|
||||||
"automergeStrategy": "auto",
|
"automergeStrategy": "auto",
|
||||||
"platformAutomerge": false
|
"platformAutomerge": false
|
||||||
|
|||||||
+10
-1
@@ -4,12 +4,21 @@
|
|||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
"postUpdateOptions": [
|
"postUpdateOptions": [
|
||||||
"gomodTidy"
|
"gomodTidy",
|
||||||
|
"gomodUpdateImportPaths"
|
||||||
],
|
],
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"groupName": "Go dependencies",
|
"groupName": "Go dependencies",
|
||||||
"matchManagers": ["gomod"]
|
"matchManagers": ["gomod"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "Bump the toolchain directive immediately",
|
||||||
|
"matchManagers": ["gomod"],
|
||||||
|
"matchDepTypes": ["toolchain"],
|
||||||
|
"rangeStrategy": "bump",
|
||||||
|
"schedule": ["at any time"],
|
||||||
|
"minimumReleaseAge": "0"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,9 @@
|
|||||||
"npm": {
|
"npm": {
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
"postUpdateOptions": [
|
||||||
|
"pnpmDedupe"
|
||||||
|
],
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"groupName": "npm dependencies",
|
"groupName": "npm dependencies",
|
||||||
|
|||||||
+2
-2
@@ -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
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user