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,
"exposable": true,
"id": "fireshare",
"tipi_version": 3,
"version": "1.2.9",
"tipi_version": 4,
"version": "1.2.11",
"categories": ["development"],
"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",

View File

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

View File

@ -1,14 +1,12 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"gitIgnoredAuthors": [
"githubaction@githubaction.com"
],
"extends": ["config:base"],
"rebaseWhen": "conflicted",
"gitIgnoredAuthors": ["githubaction@githubaction.com"],
"dependencyDashboard": true,
"enabledManagers": ["docker-compose", "dockerfile"],
"hostRules": [{
"hostRules": [
{
"matchHost": "index.docker.io",
"hostType": "docker",
"username": "jphj",
@ -21,9 +19,13 @@
"concurrentRequestLimit": 2
}
],
"packageRules": [{
"packageRules": [
{
"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
}]
}
]
}