-
Notifications
You must be signed in to change notification settings - Fork 47
/
renovate.json5
48 lines (48 loc) · 1 KB
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["config:base"],
dependencyDashboard: true,
bazel: {
ignorePaths: ["repositories/ros2_repositories_impl.bzl"],
},
pip_requirements: {
enabled: false,
},
"pre-commit": {
enabled: true,
},
packageRules: [
{
matchManagers: ["bazel"],
matchPackagePatterns: ["*"],
enabled: false,
},
{
matchManagers: ["bazel"],
matchDepNames: [
"bazel_skylib",
"googletest",
"eigen",
"foxglove_bridge",
"nlohmann_json",
"boringssl",
"pybind11",
"ros2_rust",
"rules_foreign_cc",
"rules_python",
"rules_rust",
"spdlog",
"tinyxml2",
"websocketpp",
"zstd",
],
enabled: true,
},
{
matchManagers: ["pre-commit"],
matchPackagePatterns: ["*"],
groupName: "pre-commit-deps",
},
],
schedule: ["every 1 months on the first day of the month"],
}