Skip to content
Open
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
38 changes: 37 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,40 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>reactiveui/.github:renovate"]
"extends": [
"local>reactiveui/.github:renovate"
],
"packageRules": [
{
"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\\./",
"/^stylecop\\.analyzers$/i"
]
},
{
"description": "Packaging, versioning and symbol tooling. These affect how the package is produced, never the shipped API, so they are safe to move as one.",
"matchManagers": [
"nuget"
],
"groupName": "build tooling",
"matchPackageNames": [
"/^MinVer$/",
"/^Microsoft\\.SourceLink\\./"
]
},
{
"description": "Test and benchmark helpers that sit outside the framework cohorts the shared preset already groups.",
"matchManagers": [
"nuget"
],
"groupName": "test tooling",
"matchPackageNames": [
"/^PublicApiGenerator$/"
]
}
]
}
Loading