ci: refactor renovate config NOCHANGELOG
This commit is contained in:
parent
e0ffb780f5
commit
017d416ae4
|
@ -1,13 +1,18 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"prConcurrentLimit": 1,
|
"extends": [
|
||||||
"branchConcurrentLimit": 2,
|
":dependencyDashboard",
|
||||||
"ignoreDeps": ["$CI_REGISTRY/funkwhale/backend-test-docker"],
|
":maintainLockFilesWeekly",
|
||||||
"rangeStrategy": "pin",
|
":enablePreCommit",
|
||||||
"lockFileMaintenance": { "enabled": true },
|
"group:monorepos",
|
||||||
"dependencyDashboard": true,
|
"group:recommended"
|
||||||
|
],
|
||||||
"baseBranches": ["stable", "develop"],
|
"baseBranches": ["stable", "develop"],
|
||||||
|
"branchConcurrentLimit": 2,
|
||||||
|
"prConcurrentLimit": 1,
|
||||||
"semanticCommits": "disabled",
|
"semanticCommits": "disabled",
|
||||||
|
"rangeStrategy": "pin",
|
||||||
|
"ignoreDeps": ["$CI_REGISTRY/funkwhale/backend-test-docker"],
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"matchUpdateTypes": ["major", "minor"],
|
"matchUpdateTypes": ["major", "minor"],
|
||||||
|
@ -34,17 +39,9 @@
|
||||||
"addLabels": ["Area: Backend"]
|
"addLabels": ["Area: Backend"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchPackageNames": ["@vue/runtime-core", "vue", "@vue/compiler-sfc"],
|
"matchPackagePatterns": ["^@vueuse/.*"],
|
||||||
"groupName": "Vue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"matchPackageNames": ["@vueuse/core", "@vueuse/integrations", "@vueuse/router", "@vueuse/math"],
|
|
||||||
"groupName": "vueuse"
|
"groupName": "vueuse"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"matchPackageNames": ["@sentry/tracing", "@sentry/vue"],
|
|
||||||
"groupName": "Sentry"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"matchPackageNames": ["channels", "channels-redis", "daphne"],
|
"matchPackageNames": ["channels", "channels-redis", "daphne"],
|
||||||
"groupName": "channels"
|
"groupName": "channels"
|
||||||
|
@ -57,7 +54,9 @@
|
||||||
"matchFiles": ["deploy/docker-compose.yml"],
|
"matchFiles": ["deploy/docker-compose.yml"],
|
||||||
"matchPackageNames": ["postgres"],
|
"matchPackageNames": ["postgres"],
|
||||||
"postUpgradeTasks": {
|
"postUpgradeTasks": {
|
||||||
"commands": ["echo 'Upgrade Postgres to version {{ newVersion }}. [Make sure to migrate!](https://docs.funkwhale.audio/administrator_documentation/upgrade_docs/docker.html#upgrade-the-postgres-container)' > changes/changelog.d/postgres.update"],
|
"commands": [
|
||||||
|
"echo 'Upgrade Postgres to version {{ newVersion }}. [Make sure to migrate!](https://docs.funkwhale.audio/administrator_documentation/upgrade_docs/docker.html#upgrade-the-postgres-container)' > changes/changelog.d/postgres.update"
|
||||||
|
],
|
||||||
"fileFilters": ["changes/changelog.d/postgres.update"]
|
"fileFilters": ["changes/changelog.d/postgres.update"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue