-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] Add weekly dependabot dependency updates (#48)
* Add dependabot config
- Loading branch information
Showing
2 changed files
with
548 additions
and
453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
Oops, something went wrong.