Skip to content

Commit 14919bb

Browse files
authored
fix: split cargo dependencies (#195)
Arrow ones usually have to go together
1 parent 220dafe commit 14919bb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
version: 2
22
updates:
3-
# Cargo dependencies
43
- package-ecosystem: "cargo"
54
directory: "/"
65
schedule:
76
interval: "weekly"
87
groups:
9-
cargo-dependencies:
8+
arrow:
109
patterns:
11-
- "*"
12-
13-
# Python pip dependencies
10+
- "*arrow*"
11+
- "*parquet*"
12+
non-arrow:
13+
exclude-patterns:
14+
- "*arrow*"
15+
- "*parquet*"
1416
- package-ecosystem: "pip"
1517
directory: "/"
1618
schedule:
@@ -19,8 +21,6 @@ updates:
1921
pip-dependencies:
2022
patterns:
2123
- "*"
22-
23-
# GitHub Actions
2424
- package-ecosystem: "github-actions"
2525
directory: "/"
2626
schedule:

0 commit comments

Comments
 (0)