From 6b76cbe8ff304a89a7b0310eb39def7d0206790c Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Mon, 24 Jun 2024 11:45:06 +0200 Subject: [PATCH] Add dependabot config to group updates, avoid too many PRs Signed-off-by: Guillaume Tardif --- .github/dependabot.yaml | 46 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..52d2247 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,46 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/ui" + schedule: + interval: "weekly" + groups: + js: + patterns: + - "*" + update-types: + - "minor" + - "patch" + - package-ecosystem: "npm" + directory: "/e2e/electron" + schedule: + interval: "weekly" + groups: + js: + patterns: + - "*" + update-types: + - "minor" + - "patch" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + groups: + go: + patterns: + - "*" + update-types: + - "minor" + - "patch" + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + groups: + docker: + patterns: + - "*" + update-types: + - "minor" + - "patch"