From 40b8d52240bf1dff6e65b44205855d1063ed256a Mon Sep 17 00:00:00 2001 From: Shadow Date: Sun, 3 May 2026 19:15:55 -0500 Subject: [PATCH] chore: Update active PR limit to 20 --- .github/workflows/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 360cadceb9c..9a1eac0dfb8 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -274,7 +274,7 @@ jobs: const activePrLimitLabel = "r: too-many-prs"; const activePrLimitOverrideLabel = "r: too-many-prs-override"; - const activePrLimit = 10; + const activePrLimit = 20; const labelColor = "B60205"; const labelDescription = `Author has more than ${activePrLimit} active PRs in this repo`; const authorLogin = pullRequest.user?.login;