Apply documentation/ui label to corresponding renovate updates (#3400)

This commit is contained in:
qwerty287 2024-02-17 10:35:23 +01:00 committed by GitHub
parent f86c2b7d0f
commit b7891b93ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

16
.github/renovate.json vendored
View file

@ -17,19 +17,27 @@
"matchManagers": ["gomod"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"matchManagers": ["npm"],
"matchFileNames": ["web/package.json"],
"addLabels": ["ui"]
},
{
"matchManagers": ["npm"],
"matchFileNames": ["docs/**/package.json"],
"addLabels": ["documentation"]
},
{
"groupName": "web npm deps non-major",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"matchFileNames": ["web/package.json"],
"addLabels": ["ui"]
"matchFileNames": ["web/package.json"]
},
{
"groupName": "docs npm deps non-major",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"matchFileNames": ["docs/**/package.json"],
"addLabels": ["documentation"]
"matchFileNames": ["docs/**/package.json"]
},
{
"matchDatasources": ["docker"],