From 5a9034cd5a931eff9c83ca8f4bb3c0606a7f1712 Mon Sep 17 00:00:00 2001 From: Jonathan Schwender <55576758+jschwe@users.noreply.github.com> Date: Wed, 27 Aug 2025 08:22:05 +0200 Subject: [PATCH] dependabot: Specify time and reduce PR limit (#38947) The merge queue today was greatly affected by many dependabot PRs in the European morning, which caused a long merge queue for the rest of the day. Let's attempt to schedule dependabot updates during less busy times, and also reduce the limit of open PRs. [Dependabot documentation](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#schedule-) Testing: No testing. Signed-off-by: Jonathan Schwender --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 566b76bcc60..47d00814c9c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,7 +7,10 @@ updates: - "tests/wpt/**" schedule: interval: daily - open-pull-requests-limit: 10 + # default timezone is UTC + # CI is usually busiest during european daytime. + time: "00:00" + open-pull-requests-limit: 7 allow: - dependency-type: direct - dependency-type: indirect