Skip to content

Commit 334a759

Browse files
authored
ci(dependabot): group dependency updates and reduce frequency (#364)
1 parent ed541de commit 334a759

File tree

1 file changed

+29
-4
lines changed

1 file changed

+29
-4
lines changed

.github/dependabot.yml

+29-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,33 @@
11
version: 2
22
updates:
3-
- package-ecosystem: npm
3+
# Update npm dependencies
4+
- package-ecosystem: 'npm'
45
directory: '/'
56
schedule:
6-
interval: daily
7-
time: '10:00'
8-
open-pull-requests-limit: 10
7+
interval: 'monthly'
8+
groups:
9+
lint:
10+
patterns:
11+
- '*eslint*'
12+
- '*prettier*'
13+
- '*typescript*'
14+
test:
15+
patterns:
16+
- '*svelte*'
17+
- '*testing-library*'
18+
- '*vite*'
19+
- '*vitest*'
20+
- 'jsdom'
21+
- 'happy-dom'
22+
development:
23+
dependency-type: 'development'
24+
25+
# Update GitHub Actions dependencies
26+
- package-ecosystem: 'github-actions'
27+
directory: '/'
28+
schedule:
29+
interval: 'monthly'
30+
groups:
31+
actions:
32+
patterns:
33+
- '*'

0 commit comments

Comments
 (0)