quivr/renovate.json

41 lines
758 B
JSON
Raw Permalink Normal View History

2024-01-03 13:42:18 +03:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
2024-01-04 15:05:45 +03:00
"configMigration": true,
"extends": [
"config:recommended",
"docker:pinDigests",
"helpers:pinGitHubActionDigests"
],
"includePaths": [
"backend/core/**",
"backend/api/**"
],
"packageRules": [
{
"matchManagers": [
"poetry"
],
"matchPackagePatterns": [
"*"
],
"rangeStrategy": "widen"
},
{
"matchFileNames": [
"backend/api/**"
],
"matchManagers": [
"poetry"
],
"rangeStrategy": "pin"
}
],
"poetry": {
"enabled": true
},
"prConcurrentLimit": 5,
"minimumReleaseAge": "3 days",
"prCreation": "not-pending",
"dependencyDashboard": true
}