Skip to content

Commit f053e5b

Browse files
committed
Add warnings when Renovate attempts to update packages that can be skewed
1 parent 6aeca27 commit f053e5b

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/renovate.json

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,25 @@
2222
"enabled": false
2323
},
2424
{
25-
"description": "Group all grpc updates into one update",
25+
"description": "Group all grpc updates into one update and ensure manual updates made",
2626
"matchPackageNames": ["grpc", "grpcio"],
27-
"groupName": "grpc"
27+
"groupName": "grpc",
28+
"draftPR": true,
29+
"prBodyNotes": "> [!CAUTION]\n> This PR is marked as draft, as some updates cannot be made automatically (e.g. Java Maven deps and Go deps)"
2830
},
2931
{
30-
"description": "Group all protobuf updates into one update",
32+
"description": "Ensure gRPC Gateway protoc plugins are updated in sync with Go deps",
33+
"matchPackageNames": ["github.com/grpc-ecosystem/grpc-gateway/v2"],
34+
"matchDatasources": ["go"],
35+
"draftPR": true,
36+
"prBodyNotes": "> [!CAUTION]\n> This PR is marked as draft, as the protoc plugins in modules/grpc-gateway/module_extensions.bzl need manual updating"
37+
},
38+
{
39+
"description": "Group all protobuf updates into one update and ensure manual updates made",
3140
"matchPackageNames": ["protobuf"],
32-
"groupName": "protobuf"
41+
"groupName": "protobuf",
42+
"draftPR": true,
43+
"prBodyNotes": "> [!CAUTION]\n> This PR is marked as draft, as some updates cannot be made automatically (e.g. Java Maven deps and Go deps)"
3344
}
3445
],
3546
"postUpdateOptions": ["gomodTidy"],

0 commit comments

Comments
 (0)