From 4e25f8df6ef7948ddaf4abad3a477e0b754410ba Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sat, 6 Jul 2024 12:26:07 +0000 Subject: [PATCH 1/4] chore: group frontend dependencies --- .github/dependabot.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 0f8f8849a84c2..dc4f8a7f6b1a3 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -73,6 +73,29 @@ updates: commit-message: prefix: "chore" labels: [] + groups: + xterm: + patterns: + - "@xterm*" + mui: + patterns: + - "@mui*" + react: + patterns: + - "react*" + - "@types/react*" + emotion: + patterns: + - "@emotion*" + eslint: + patterns: + - "eslint*" + jest: + patterns: + - "jest*" + vite: + patterns: + - "vite*" ignore: # Ignore patch updates for all dependencies - dependency-name: "*" @@ -83,4 +106,10 @@ updates: - dependency-name: "@types/node" update-types: - version-update:semver-major + # Ignore @storybook updates, run `pnpm dlx storybook@latest upgrade` to update + - dependency-name: "*storybook*" # matches @storybook/* and storybook- + update-types: + - version-update:semver-major + - version-update:semver-minor + - version-update:semver-patch open-pull-requests-limit: 15 From 9d78199140210d094ae26e717f7b289554ed38a2 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sat, 6 Jul 2024 12:32:48 +0000 Subject: [PATCH 2/4] refine --- .github/dependabot.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index dc4f8a7f6b1a3..125a5b1134fd9 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -90,12 +90,15 @@ updates: eslint: patterns: - "eslint*" + - "@typescript-eslint*" jest: patterns: - "jest*" + - "@types/jest" vite: patterns: - "vite*" + - "@vitejs/plugin-react" ignore: # Ignore patch updates for all dependencies - dependency-name: "*" From d647e816b5656dbbac01b6462eb5d182562b0e2d Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sat, 6 Jul 2024 12:34:11 +0000 Subject: [PATCH 3/4] elaborate --- .github/dependabot.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 125a5b1134fd9..41ca61df3a346 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -109,8 +109,8 @@ updates: - dependency-name: "@types/node" update-types: - version-update:semver-major - # Ignore @storybook updates, run `pnpm dlx storybook@latest upgrade` to update - - dependency-name: "*storybook*" # matches @storybook/* and storybook- + # Ignore @storybook updates, run `pnpm dlx storybook@latest upgrade` to upgrade manually + - dependency-name: "*storybook*" # matches @storybook/* and storybook* update-types: - version-update:semver-major - version-update:semver-minor From 8c821ac44d551c7f57b6ebfca6f89aa23f0b5504 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 8 Jul 2024 15:04:37 +0300 Subject: [PATCH 4/4] group golang.org/x/ dependencies --- .github/dependabot.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 41ca61df3a346..31bd53ee7d55a 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -39,6 +39,10 @@ updates: prefix: "chore" labels: [] open-pull-requests-limit: 15 + groups: + x: + patterns: + - "golang.org/x/*" ignore: # Ignore patch updates for all dependencies - dependency-name: "*"