Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 29 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>reactiveui/.github:renovate"]
}
"extends": [
"local>reactiveui/.github:renovate"
],
"packageRules": [
{
"description": "The documentation site pulls in more than thirty NuStreamDocs.* packages that are released in lockstep. Without this they arrive as thirty separate PRs that cannot be merged independently.",
"matchManagers": [
"nuget"
],
"groupName": "NuStreamDocs",
"matchPackageNames": [
"/^NuStreamDocs(\\.|$)/"
]
},
{
"description": "Analyzer packages all gate the build through the same warnings-as-errors pass, so landing them separately just means several red CI runs in a row. Move them in one PR.",
"matchManagers": [
"nuget"
],
"groupName": "analyzers",
"matchPackageNames": [
"/^Roslynator\\./",
"/^SonarAnalyzer\\./",
"/^stylecop\\.analyzers$/i",
"/^Blazor\\.Common\\.Analyzers$/"
]
}
]
}