From e0fe6c6e8513a14c3306243ec220ace51cc6f749 Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Fri, 10 Jan 2025 10:52:09 -0800 Subject: [PATCH] Fix dependabot (#1707) Attempting to fix timeouts in the npm dependabot runs. I noticed that some of the exclusion patterns were incomplete --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 700ad6d4b..093668ebb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,7 +13,10 @@ updates: exclude-patterns: - "*storybook*" - "*electron*" + - "jotai" + - "react" - "@types/react" + - "*docusaurus*" update-types: - "minor" - "patch" @@ -22,25 +25,34 @@ updates: exclude-patterns: - "*storybook*" - "*electron*" + - "jotai" + - "react" - "@types/react" + - "*docusaurus*" update-types: - "major" prod-dependencies: dependency-type: "production" exclude-patterns: + - "*storybook*" - "*electron*" - "jotai" - "react" + - "@types/react" + - "*docusaurus*" update-types: - "minor" - "patch" prod-dependencies-major: dependency-type: "production" exclude-patterns: + - "*storybook*" - "*electron*" - "jotai" - "react" + - "@types/react" + - "*docusaurus*" update-types: - "major"