From 57326c5464451cc1137290c2abfcd1f4edb6f438 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Wed, 21 Aug 2024 12:58:56 +0200 Subject: [PATCH] ci: Create dependabot.yml (#731) --- .github/dependabot.yml | 50 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..604b5977eb3 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,50 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" # Location of package manifests + schedule: + interval: "monthly" + commit-message: + prefix: "chore" + include: "scope" + open-pull-requests-limit: 20 + groups: + mui-packages: + # Define patterns to include dependencies in the group (based on dependency name) + patterns: + - "@mui/*" + i18n: + patterns: + - "i18next" + - "react-i18next" + basics: + patterns: + - "@types/node" + - "@types/react" + - "@types/react-dom" + - "react" + - "react-dom" + - "typescript" + emotion: + patterns: + - "@emotion/*" + redux: + patterns: + - "@reduxjs/toolkit" + - "react-redux" + vite: + patterns: + - "@vitejs/plugin-react" + - "vite" + eslint: + patterns: + - "@typescript-eslint/*" + - "eslint" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + commit-message: + prefix: "chore" + include: "scope" + open-pull-requests-limit: 20