From a41f3fe3779d718fa7092934db98b6df07e05fde Mon Sep 17 00:00:00 2001 From: yxtay <5795122+yxtay@users.noreply.github.com> Date: Mon, 16 Mar 2026 15:50:10 +0800 Subject: [PATCH] chore: Disable Dependabot Add open-pull-requests-limit: 0 to the Docker, GitHub Actions, and UV update blocks in .github/dependabot.yml. This sets the concurrent open PR limit to zero for those ecosystems, preventing Dependabot from creating pull requests and reducing update noise so updates can be handled manually. --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3dc03d83..02f05b0c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,6 +7,7 @@ updates: interval: daily commit-message: prefix: build(docker) + open-pull-requests-limit: 0 groups: docker: update-types: [minor, patch] @@ -17,6 +18,7 @@ updates: interval: daily commit-message: prefix: ci(github-actions) + open-pull-requests-limit: 0 groups: github-actions: update-types: [minor, patch] @@ -27,6 +29,7 @@ updates: interval: daily commit-message: prefix: build(uv) + open-pull-requests-limit: 0 groups: uv: update-types: [minor, patch]