File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,3 +6,26 @@ updates:
66 schedule :
77 # Check for updates to GitHub Actions every week
88 interval : " weekly"
9+
10+ # npm version updates (security updates run automatically regardless of this)
11+ - package-ecosystem : " npm"
12+ directory : " /"
13+ schedule :
14+ interval : " weekly"
15+ open-pull-requests-limit : 10
16+ # Wait a week after a release is published before opening a bump for it, so a
17+ # freshly published (or later yanked/compromised) version isn't picked up on
18+ # day zero.
19+ cooldown :
20+ default-days : 7
21+ groups :
22+ # Roll routine minor/patch bumps into one PR to keep the noise down
23+ minor-and-patch :
24+ update-types :
25+ - " minor"
26+ - " patch"
27+ ignore :
28+ # @types/node tracks the Node version Electron bundles (24 for Electron 42),
29+ # not the newest types, so skip major bumps here.
30+ - dependency-name : " @types/node"
31+ update-types : ["version-update:semver-major"]
You can’t perform that action at this time.
0 commit comments