From a6a1773d9c6b1802bdf10f50d1f37ae624e44419 Mon Sep 17 00:00:00 2001 From: Paulius Juzenas Date: Thu, 13 Feb 2025 09:53:40 +0100 Subject: [PATCH] chore: add grouping for dependabot updates --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1dbb4b8 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,26 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/frontend" + schedule: + interval: "weekly" + groups: + minor: + update-types: + - "minor" + - "patch" + major: + update-types: + - "major" + - package-ecosystem: "pip" + directory: "/api" + schedule: + interval: "weekly" + groups: + minor: + update-types: + - "minor" + - "patch" + major: + update-types: + - "major"