Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Dependabot config — security + dependency hygiene for a public Python package
# Updates land as PRs against main. CI must pass before merge.

version: 2
updates:
# Core Python dependencies (pyproject.toml + requirements*.txt if present)
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Etc/UTC"
open-pull-requests-limit: 5
labels:
- "dependencies"
commit-message:
prefix: "deps"
include: "scope"
# Group minor + patch updates together to reduce PR noise.
# Major version bumps land as individual PRs for review.
groups:
python-minor-and-patch:
update-types:
- "minor"
- "patch"

# GitHub Actions workflow versions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Etc/UTC"
open-pull-requests-limit: 3
labels:
- "dependencies"
- "github-actions"
commit-message:
prefix: "ci"
include: "scope"
Loading