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:
Copilot
2025-11-02 09:49:34 +08:00
committed by GitHub
parent 55604621cf
commit bb24b5ae4d

61
.github/dependabot.yml vendored Normal file
View 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"