Skip to content

Commit

Permalink
[chore] Add weekly dependabot dependency updates (#48)
Browse files Browse the repository at this point in the history
* Add dependabot config
  • Loading branch information
qTipTip authored Jan 27, 2025
1 parent ffd63af commit 2f71293
Show file tree
Hide file tree
Showing 2 changed files with 548 additions and 453 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
version: 2
updates:
# Poetry/Python dependencies
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "UTC"

versioning-strategy: "lockfile-only"

# This helps manage the number of open PRs at any time
open-pull-requests-limit: 5

labels:
- "dependencies"
- "python"
- "poetry"

# Optional: Group minor and patch updates together to reduce PR noise
groups:
minor-patch-dependencies:
patterns:
- "*"
update-types:
- "minor"
- "patch"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "UTC"
labels:
- "dependencies"
- "github-actions"
Loading

0 comments on commit 2f71293

Please sign in to comment.