From 2fbc0f6089ed19d1ccac9f27619b02e5239b924d Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Thu, 7 May 2026 09:38:07 +0100 Subject: [PATCH] Skip big-pr check for translatewiki These are often large, for example when we add more strings or when a new language crosses the inclusion threshold. --- Dangerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dangerfile b/Dangerfile index 33d44bcf1..92e91c253 100644 --- a/Dangerfile +++ b/Dangerfile @@ -4,7 +4,7 @@ pr_number = github.pr_json["number"] # Report if number of changed lines is > 500 -if git.lines_of_code > 500 +if git.lines_of_code > 500 && github.pr_author != "translatewiki" warn("Number of updated lines of code is too large to be in one PR. Perhaps it should be separated into two or more?") auto_label.set(pr_number, "big-pr", "FBCA04") else -- 2.39.5