Skip to content

Commit 7f07eb2

Browse files
committed
chore: add dependabot configuration file
Up until now, dependabot only opened pull requests for security issues. This configuration file will make it so dependabot performs regular upgrades too. Signed-off-by: Simon Ser <contact@emersion.fr>
1 parent cdde40f commit 7f07eb2

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
cooldown:
8+
default-days: 5
9+
groups:
10+
angular:
11+
patterns:
12+
- "@angular/*"
13+
- "@angular-devkit/*"
14+
- "@angular-eslint/*"
15+
typescript-eslint:
16+
patterns:
17+
- "@typescript-eslint/*"
18+
- "typescript-eslint"
19+
patch:
20+
update-types:
21+
- "patch"
22+
commit-message:
23+
prefix: "chore(deps):"
24+
labels:
25+
- "dependencies"

0 commit comments

Comments
 (0)