Skip to content

Commit 42475ad

Browse files
committed
ci(deps): let dependabot watch Python dependencies too
The dependabot config only covered github-actions, so runtime and dev deps in pyproject.toml stayed in a manual-bump grey zone. Add a `pip` ecosystem entry grouped under a single `python-deps` group so bumps arrive as one consolidated PR per week instead of a dozen noisy ones.
1 parent 6222888 commit 42475ad

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,12 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
8+
- package-ecosystem: "pip"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
groups:
13+
python-deps:
14+
patterns:
15+
- "*"

0 commit comments

Comments
 (0)