Skip to content

Commit e0fe6c6

Browse files
authored
Fix dependabot (#1707)
Attempting to fix timeouts in the npm dependabot runs. I noticed that some of the exclusion patterns were incomplete
1 parent 0d7439e commit e0fe6c6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ updates:
1313
exclude-patterns:
1414
- "*storybook*"
1515
- "*electron*"
16+
- "jotai"
17+
- "react"
1618
- "@types/react"
19+
- "*docusaurus*"
1720
update-types:
1821
- "minor"
1922
- "patch"
@@ -22,25 +25,34 @@ updates:
2225
exclude-patterns:
2326
- "*storybook*"
2427
- "*electron*"
28+
- "jotai"
29+
- "react"
2530
- "@types/react"
31+
- "*docusaurus*"
2632
update-types:
2733
- "major"
2834

2935
prod-dependencies:
3036
dependency-type: "production"
3137
exclude-patterns:
38+
- "*storybook*"
3239
- "*electron*"
3340
- "jotai"
3441
- "react"
42+
- "@types/react"
43+
- "*docusaurus*"
3544
update-types:
3645
- "minor"
3746
- "patch"
3847
prod-dependencies-major:
3948
dependency-type: "production"
4049
exclude-patterns:
50+
- "*storybook*"
4151
- "*electron*"
4252
- "jotai"
4353
- "react"
54+
- "@types/react"
55+
- "*docusaurus*"
4456
update-types:
4557
- "major"
4658

0 commit comments

Comments
 (0)