From d4d6bc7fda5dd7a1312db2d209acd1f80b8be23e Mon Sep 17 00:00:00 2001 From: Szymon Konefal Date: Fri, 12 Jun 2026 01:24:03 +0200 Subject: [PATCH 1/3] chore: add Dependabot config with cooldown Towards PLA-2146 --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..b4e0f66b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "monthly" + cooldown: + default-days: 7 + open-pull-requests-limit: 10 + groups: + security-updates: + applies-to: "security-updates" + patterns: ["*"] + minor-and-patch: + patterns: ["*"] + update-types: ["minor", "patch"] + major-updates: + patterns: ["*"] + update-types: ["major"] From 67d9907d5de57038d773f2072310eb99dfda8d09 Mon Sep 17 00:00:00 2001 From: Szymon Konefal Date: Fri, 12 Jun 2026 14:26:55 +0200 Subject: [PATCH 2/3] Remove open-pull-requests-limit override Drop the open-pull-requests-limit: 10 override so Dependabot reverts to its default open PR limit of 5. Towards PLA-2146 --- .github/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b4e0f66b..b8aee2fa 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,6 @@ updates: interval: "monthly" cooldown: default-days: 7 - open-pull-requests-limit: 10 groups: security-updates: applies-to: "security-updates" From d2d4a2607c3af91e428232c524c690fe1378affc Mon Sep 17 00:00:00 2001 From: Szymon Konefal Date: Fri, 12 Jun 2026 15:01:09 +0200 Subject: [PATCH 3/3] chore(dependabot): stop grouping major version updates into one PR Towards PLA-2146 --- .github/dependabot.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b8aee2fa..3923ad19 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,6 +13,3 @@ updates: minor-and-patch: patterns: ["*"] update-types: ["minor", "patch"] - major-updates: - patterns: ["*"] - update-types: ["major"]