From d6ce141129614171e097519c87d4597ee61e2b6b Mon Sep 17 00:00:00 2001 From: Junge Date: Wed, 13 May 2026 17:27:07 +0800 Subject: [PATCH] ci: add automerged-updates to Dependabot config --- .github/dependabot.yml | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e986de0..e590059 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,13 +3,23 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "weekly" - day: "monday" + interval: "daily" time: "09:00" timezone: "Asia/Shanghai" open-pull-requests-limit: 10 + commit-message: + prefix: "deps" labels: - "dependencies" + - "automated" + automerged-updates: + - match: + dependency-type: "development" + update-type: "semver-minor" + - match: + dependency-type: "production" + update-type: "semver-patch" + - package-ecosystem: "github-actions" directory: "/" schedule: @@ -17,3 +27,14 @@ updates: day: "monday" time: "09:00" timezone: "Asia/Shanghai" + open-pull-requests-limit: 5 + commit-message: + prefix: "ci" + labels: + - "ci" + - "dependencies" + - "automated" + automerged-updates: + - match: + dependency-type: "all" + update-type: "semver-major"