From a26db77b203fcabaea74a5ff95c6ebde9845add8 Mon Sep 17 00:00:00 2001 From: Wouter Vanden Hove Date: Mon, 6 Apr 2026 13:36:03 +0200 Subject: [PATCH] fix(dependabot): rename label uv to uv.lock Label 'uv' did not exist in the repo, causing Dependabot to block itself from opening PRs. Rename to 'uv.lock' which is now created. --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 92bb553..d2d77c4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -26,7 +26,7 @@ updates: labels: - "dependencies" - "python" - - "uv" + - "uv.lock" open-pull-requests-limit: 9 schedule: interval: "monthly"