Skip to content

Commit fc2cc0b

Browse files
karlwaldmanclaude
andauthored
chore: add dependabot config (pip + github-actions, weekly) (#54)
The repo had no dependabot.yml. Runtime deps are floor-pinned ranges so users already get current releases; this keeps the CI actions and dev toolchain from drifting silently. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent b30c213 commit fc2cc0b

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Dependabot configuration.
2+
#
3+
# Runtime deps in pyproject.toml are floor-pinned ranges (>=), so pip users
4+
# already resolve to the latest compatible releases; the value here is
5+
# keeping GitHub Actions pinned-by-tag workflows and the dev toolchain
6+
# (pytest/mypy/ruff/etc.) from drifting silently.
7+
version: 2
8+
updates:
9+
- package-ecosystem: "pip"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"
13+
day: "monday"
14+
open-pull-requests-limit: 5
15+
labels:
16+
- "dependencies"
17+
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
schedule:
21+
interval: "weekly"
22+
day: "monday"
23+
open-pull-requests-limit: 5
24+
labels:
25+
- "dependencies"
26+
- "ci"

0 commit comments

Comments
 (0)