Skip to content

Commit 5cfbdca

Browse files
authored
Separate out Yarn major updates into separate Dependabot groups (#1607)
This is annoyingly verbose, but will let us still get PRs for minor and patch updates separately from major updates, so we can continue to benefit from bugfixes without having to adopt breaking changes. Also adds a jotai update group
1 parent 53a64fc commit 5cfbdca

File tree

1 file changed

+80
-2
lines changed

1 file changed

+80
-2
lines changed

.github/dependabot.yml

Lines changed: 80 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,98 @@ updates:
1313
exclude-patterns:
1414
- "*storybook*"
1515
- "*electron*"
16-
storybook:
17-
patterns:
16+
- "@types/react"
17+
update-types:
18+
- "minor"
19+
- "patch"
20+
dev-dependencies-major:
21+
dependency-type: "development"
22+
exclude-patterns:
1823
- "*storybook*"
24+
- "*electron*"
25+
- "@types/react"
26+
update-types:
27+
- "major"
28+
1929
prod-dependencies:
2030
dependency-type: "production"
2131
exclude-patterns:
2232
- "*electron*"
2333
- "jotai"
34+
- "react"
35+
update-types:
36+
- "minor"
37+
- "patch"
38+
prod-dependencies-major:
39+
dependency-type: "production"
40+
exclude-patterns:
41+
- "*electron*"
42+
- "jotai"
43+
- "react"
44+
update-types:
45+
- "major"
46+
47+
storybook:
48+
patterns:
49+
- "*storybook*"
50+
update-types:
51+
- "minor"
52+
- "patch"
53+
storybook-major:
54+
patterns:
55+
- "*storybook*"
56+
update-types:
57+
- "major"
58+
2459
electron:
2560
patterns:
2661
- "*electron*"
62+
update-types:
63+
- "minor"
64+
- "patch"
65+
electron-major:
66+
patterns:
67+
- "*electron*"
68+
update-types:
69+
- "major"
70+
2771
docusaurus:
2872
patterns:
2973
- "*docusaurus*"
74+
update-types:
75+
- "minor"
76+
- "patch"
77+
docusaurus-major:
78+
patterns:
79+
- "*docusaurus*"
80+
update-types:
81+
- "major"
82+
83+
react:
84+
patterns:
85+
- "react"
86+
- "@types/react"
87+
update-types:
88+
- "minor"
89+
- "patch"
90+
react-major:
91+
patterns:
92+
- "react"
93+
- "@types/react"
94+
update-types:
95+
- "major"
96+
97+
jotai:
98+
patterns:
99+
- "jotai"
100+
update-types:
101+
- "minor"
102+
- "patch"
103+
jotai-major:
104+
patterns:
105+
- "jotai"
106+
update-types:
107+
- "major"
30108
- package-ecosystem: "gomod"
31109
directory: "/"
32110
schedule:

0 commit comments

Comments
 (0)