chore(deps): add Dependabot configuration for automated dependency updates (#65)
* Initial plan * chore(deps): add Dependabot configuration for Python, GitHub Actions, and Docker Co-authored-by: MingxuanGame <68982190+MingxuanGame@users.noreply.github.com> * chore(deps): switch to uv ecosystem and change schedule to Sunday Co-authored-by: MingxuanGame <68982190+MingxuanGame@users.noreply.github.com> * chore(deps): use type/dependencies label only Co-authored-by: MingxuanGame <68982190+MingxuanGame@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: MingxuanGame <68982190+MingxuanGame@users.noreply.github.com>
This commit is contained in:
61
.github/dependabot.yml
vendored
Normal file
61
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
# Python dependencies (uv ecosystem)
|
||||||
|
- package-ecosystem: "uv"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
day: "sunday"
|
||||||
|
time: "09:00"
|
||||||
|
timezone: "Asia/Shanghai"
|
||||||
|
open-pull-requests-limit: 10
|
||||||
|
labels:
|
||||||
|
- "type/dependencies"
|
||||||
|
commit-message:
|
||||||
|
prefix: "chore"
|
||||||
|
prefix-development: "chore"
|
||||||
|
include: "scope"
|
||||||
|
groups:
|
||||||
|
# Group all patch and minor updates together
|
||||||
|
minor-and-patch:
|
||||||
|
patterns:
|
||||||
|
- "*"
|
||||||
|
update-types:
|
||||||
|
- "minor"
|
||||||
|
- "patch"
|
||||||
|
# Separate major updates
|
||||||
|
major:
|
||||||
|
patterns:
|
||||||
|
- "*"
|
||||||
|
update-types:
|
||||||
|
- "major"
|
||||||
|
|
||||||
|
# GitHub Actions
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
day: "sunday"
|
||||||
|
time: "09:00"
|
||||||
|
timezone: "Asia/Shanghai"
|
||||||
|
open-pull-requests-limit: 5
|
||||||
|
labels:
|
||||||
|
- "type/dependencies"
|
||||||
|
commit-message:
|
||||||
|
prefix: "chore"
|
||||||
|
include: "scope"
|
||||||
|
|
||||||
|
# Docker
|
||||||
|
- package-ecosystem: "docker"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
day: "sunday"
|
||||||
|
time: "09:00"
|
||||||
|
timezone: "Asia/Shanghai"
|
||||||
|
open-pull-requests-limit: 5
|
||||||
|
labels:
|
||||||
|
- "type/dependencies"
|
||||||
|
commit-message:
|
||||||
|
prefix: "chore"
|
||||||
|
include: "scope"
|
||||||
Reference in New Issue
Block a user