Skip to content

Commit 7ddc71d

Browse files
authored
#1544 Minor bazel docs update to reflect improvements in renovate
1 parent 755f49f commit 7ddc71d

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

examples/build/bazel/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@ bazel run //example
2222
```
2323

2424
To keep your flecs dependency up to date with [Renovate](https://docs.renovatebot.com/) + CI, make sure to declare the version attribute of the `bazel_dep`.
25-
Due to a bit of laziness, Renovate doesn't discover bzlmod dependencies without the `version` attribute.
26-
The actual number doesn't matter, and it will create pull requests to update the commit.
2725

2826
```bazel
29-
bazel_dep(name = "flecs", version = "0.0.0")
27+
bazel_dep(name = "flecs")
3028
git_override(
3129
module_name = "flecs",
3230
remote = "https://github.com/SanderMertens/flecs.git",
@@ -38,11 +36,8 @@ If you use a merge queue for managing CI, you can configure Renovate to automati
3836

3937
```json5
4038
{
41-
"extends": ["config:base"],
39+
"extends": ["config:recommended"],
4240
"dependencyDashboard": true,
43-
4441
"automerge": true,
45-
"automergeType": "pr-comment", // have Renovate leave a comment to kick off CI + merge
46-
"automergeComment": "/trunk merge" // the comment to leave
4742
}
4843
```

0 commit comments

Comments
 (0)