From 598b2dfdba39691a6efa7f6af2a22dcf45f8af15 Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Tue, 14 Jan 2025 22:24:44 -0800 Subject: [PATCH] Try reverting Dependabot changes (#1736) I found a discrepancy in our docs package that could be the reason for the Dependabot timeouts. I'm going to try reverting my earlier changes to see if this is fixed --- .github/dependabot.yml | 48 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 784585756..093668ebb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,6 +20,17 @@ updates: update-types: - "minor" - "patch" + dev-dependencies-major: + dependency-type: "development" + exclude-patterns: + - "*storybook*" + - "*electron*" + - "jotai" + - "react" + - "@types/react" + - "*docusaurus*" + update-types: + - "major" prod-dependencies: dependency-type: "production" @@ -33,6 +44,17 @@ updates: update-types: - "minor" - "patch" + prod-dependencies-major: + dependency-type: "production" + exclude-patterns: + - "*storybook*" + - "*electron*" + - "jotai" + - "react" + - "@types/react" + - "*docusaurus*" + update-types: + - "major" storybook: patterns: @@ -40,6 +62,11 @@ updates: update-types: - "minor" - "patch" + storybook-major: + patterns: + - "*storybook*" + update-types: + - "major" electron: patterns: @@ -47,6 +74,11 @@ updates: update-types: - "minor" - "patch" + electron-major: + patterns: + - "*electron*" + update-types: + - "major" docusaurus: patterns: @@ -54,6 +86,11 @@ updates: update-types: - "minor" - "patch" + docusaurus-major: + patterns: + - "*docusaurus*" + update-types: + - "major" react: patterns: @@ -62,6 +99,12 @@ updates: update-types: - "minor" - "patch" + react-major: + patterns: + - "react" + - "@types/react" + update-types: + - "major" jotai: patterns: @@ -69,6 +112,11 @@ updates: update-types: - "minor" - "patch" + jotai-major: + patterns: + - "jotai" + update-types: + - "major" - package-ecosystem: "gomod" directory: "/" schedule: