Skip to content

Commit 4a703ea

Browse files
authored
chore: optimize dependabot config with grouping and cooldown (#957)
* chore: optimize dependabot config with grouping and cooldown * back to daily * fix: remove unsupported semver-major-days for github-actions * chore: update commit message prefix for dependabot config
1 parent d2e0cf1 commit 4a703ea

1 file changed

Lines changed: 20 additions & 7 deletions

File tree

.github/dependabot.yml

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,35 @@
11
version: 2
22
updates:
33
- package-ecosystem: "npm"
4-
directory: "/" # Location of package manifests
4+
directory: "/"
55
schedule:
66
interval: "daily"
7+
cooldown:
8+
default-days: 7
9+
semver-major-days: 14
710
commit-message:
8-
prefix: "chore(deps): "
11+
prefix: "chore"
12+
include: "scope"
13+
groups:
14+
minor-and-patch:
15+
update-types:
16+
- "minor"
17+
- "patch"
918
ignore:
10-
# 16 is current LTS and needed for VS Code extension development
11-
# See https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites
12-
- dependency-name: "node"
13-
update-types: ["version-update:semver-major"]
1419
- dependency-name: "@types/node"
1520
update-types: ["version-update:semver-major"]
1621

1722
- package-ecosystem: "github-actions"
1823
directory: "/"
1924
schedule:
2025
interval: "weekly"
26+
cooldown:
27+
default-days: 7
2128
commit-message:
22-
prefix: "chore(deps): "
29+
prefix: "chore"
30+
include: "scope"
31+
groups:
32+
minor-and-patch:
33+
update-types:
34+
- "minor"
35+
- "patch"

0 commit comments

Comments
 (0)