diff options
Diffstat (limited to '.github/dependabot.yml')
| -rw-r--r-- | .github/dependabot.yml | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3e3988c..d4705ea 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,13 +5,31 @@ version: 2 updates: - - package-ecosystem: "npm" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: "npm" + directory: "/src/main/webui" schedule: day: "saturday" interval: "weekly" - - package-ecosystem: "maven" # See documentation for possible values - directory: "/" # Location of package manifests + allow: + - dependency-type: "production" + groups: + react: + patterns: + - "react" + - "react-dom" + - "@types/react" + - "@types/react-dom" + tailwind: + patterns: + - "tailwindcss" + - "@tailwindcss/postcss" + - package-ecosystem: "maven" + directory: "/" + schedule: + day: "saturday" + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" schedule: day: "saturday" interval: "weekly" |
