chore: update renovate config

This commit is contained in:
Nicolas Meienberger 2023-06-21 01:15:00 +02:00
parent 2ddc61f8bf
commit 7c071de55e
3 changed files with 32 additions and 29 deletions

View File

@ -5,8 +5,8 @@
"available": true, "available": true,
"exposable": true, "exposable": true,
"id": "fireshare", "id": "fireshare",
"tipi_version": 3, "tipi_version": 4,
"version": "1.2.9", "version": "1.2.11",
"categories": ["development"], "categories": ["development"],
"description": "Self host your media and share with unique links. Share your game clips, videos, or other media via unique links.", "description": "Self host your media and share with unique links. Share your game clips, videos, or other media via unique links.",
"short_desc": "Self host your media and share with unique links", "short_desc": "Self host your media and share with unique links",

View File

@ -2,6 +2,7 @@ module.exports = {
extends: ["config:base"], extends: ["config:base"],
onboarding: false, onboarding: false,
requireConfig: false, requireConfig: false,
rebaseWhen: "conflicted",
gitIgnoredAuthors: ["githubaction@githubaction.com"], gitIgnoredAuthors: ["githubaction@githubaction.com"],
dependencyDashboard: true, dependencyDashboard: true,
enabledManagers: ["docker-compose", "dockerfile"], enabledManagers: ["docker-compose", "dockerfile"],

View File

@ -1,14 +1,12 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": ["config:base"],
"config:base" "rebaseWhen": "conflicted",
], "gitIgnoredAuthors": ["githubaction@githubaction.com"],
"gitIgnoredAuthors": [
"githubaction@githubaction.com"
],
"dependencyDashboard": true, "dependencyDashboard": true,
"enabledManagers": ["docker-compose", "dockerfile"], "enabledManagers": ["docker-compose", "dockerfile"],
"hostRules": [{ "hostRules": [
{
"matchHost": "index.docker.io", "matchHost": "index.docker.io",
"hostType": "docker", "hostType": "docker",
"username": "jphj", "username": "jphj",
@ -21,9 +19,13 @@
"concurrentRequestLimit": 2 "concurrentRequestLimit": 2
} }
], ],
"packageRules": [{ "packageRules": [
{
"managers": ["docker-compose", "dockerfile"], "managers": ["docker-compose", "dockerfile"],
"packagePatterns": ["^([^\\/]+\\/)?(mysql|mariadb|mongodb|mongo|postgres|redis|clickhouse-server|clickhouse|nginx|couchdb|documentserver)(:|$)"], "packagePatterns": [
"^([^\\/]+\\/)?(mysql|mariadb|mongodb|mongo|postgres|redis|clickhouse-server|clickhouse|nginx|couchdb|documentserver)(:|$)"
],
"enabled": false "enabled": false
}] }
]
} }