Skip to content

Commit 8050639

Browse files
committed
Ruby: Simplify dependabot config
Dependabot is able to understand cargo workspaces, so it's not necessary to enumerate each workspace member. It should be enough to configure it with the workspace root directory. This will hopefully ensure that the Cargo.lock file gets updated correctly.
1 parent fc66c90 commit 8050639

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
11
version: 2
22
updates:
33
- package-ecosystem: "cargo"
4-
directory: "ruby/node-types"
5-
schedule:
6-
interval: "daily"
7-
- package-ecosystem: "cargo"
8-
directory: "ruby/generator"
9-
schedule:
10-
interval: "daily"
11-
- package-ecosystem: "cargo"
12-
directory: "ruby/extractor"
13-
schedule:
14-
interval: "daily"
15-
- package-ecosystem: "cargo"
16-
directory: "ruby/autobuilder"
4+
directory: "ruby"
175
schedule:
186
interval: "daily"
197

0 commit comments

Comments
 (0)