Skip to content

Commit 9839dc1

Browse files
authored
Add dependabot config (#1688)
* Add dependabot config * Group minor and patch updates for NPM and GH Actions
1 parent 9b4c13b commit 9839dc1

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/dependabot.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
version: 2
3+
4+
updates:
5+
- package-ecosystem: "npm"
6+
directory: "/"
7+
schedule:
8+
interval: "weekly"
9+
groups:
10+
minor-npm-dependencies:
11+
# NPM: Only group minor and patch updates (we want to carefully review major updates)
12+
update-types: [minor, patch]
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
groups:
18+
minor-actions-dependencies:
19+
# GitHub Actions: Only group minor and patch updates (we want to carefully review major updates)
20+
update-types: [minor, patch]

0 commit comments

Comments
 (0)