From 07d74959b4c7cc7cab2d18a01de7ec11d54226e3 Mon Sep 17 00:00:00 2001 From: Szymon Konefal Date: Fri, 12 Jun 2026 01:22:58 +0200 Subject: [PATCH 1/3] chore: add Dependabot config with cooldown Towards PLA-2146 --- .github/dependabot.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5fca284 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,36 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + 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"] + - package-ecosystem: "github-actions" + 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 a472358c2a046ca4d1bb0db72ee3658516390355 Mon Sep 17 00:00:00 2001 From: Szymon Konefal Date: Fri, 12 Jun 2026 14:26:34 +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 | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5fca284..a8000bd 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" @@ -23,7 +22,6 @@ updates: interval: "monthly" cooldown: default-days: 7 - open-pull-requests-limit: 10 groups: security-updates: applies-to: "security-updates" From b6de35e99f069b57963ac77d11c48b86dd0d3692 Mon Sep 17 00:00:00 2001 From: Szymon Konefal Date: Fri, 12 Jun 2026 15:00:32 +0200 Subject: [PATCH 3/3] chore(dependabot): stop grouping major version updates into one PR Towards PLA-2146 --- .github/dependabot.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a8000bd..ceb9dae 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,9 +13,6 @@ updates: minor-and-patch: patterns: ["*"] update-types: ["minor", "patch"] - major-updates: - patterns: ["*"] - update-types: ["major"] - package-ecosystem: "github-actions" directory: "/" schedule: @@ -29,6 +26,3 @@ updates: minor-and-patch: patterns: ["*"] update-types: ["minor", "patch"] - major-updates: - patterns: ["*"] - update-types: ["major"]