From a071b82b9501280e9830a9b970c895f798b30286 Mon Sep 17 00:00:00 2001 From: wenytang-ms Date: Mon, 7 Sep 2026 16:10:06 +0800 Subject: [PATCH 1/2] chore: limit Dependabot development updates to minor and patch Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a4a0cf03..714904c5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,12 @@ updates: directory: "/" # Location of package manifests schedule: interval: "daily" + allow: + - dependency-type: "production" + - dependency-type: "development" + update-types: + - "version-update:semver-minor" + - "version-update:semver-patch" # CI restores packages from the Central Feed Service, which withholds # upstream versions until they are roughly a week old (measured at ~6.8 # days; both the packument entry and the tarball return 404 before then). From fecc0f00fa7a116eb046604192921525a032734c Mon Sep 17 00:00:00 2001 From: wenytang-ms Date: Mon, 7 Sep 2026 16:17:21 +0800 Subject: [PATCH 2/2] chore: configure Dependabot PR title prefixes Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 714904c5..01551feb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,6 +15,9 @@ updates: update-types: - "version-update:semver-minor" - "version-update:semver-patch" + commit-message: + prefix: "chore(deps)" + prefix-development: "chore(dev-deps)" # CI restores packages from the Central Feed Service, which withholds # upstream versions until they are roughly a week old (measured at ~6.8 # days; both the packument entry and the tarball return 404 before then).