File tree Expand file tree Collapse file tree 1 file changed +33
-2
lines changed Expand file tree Collapse file tree 1 file changed +33
-2
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,25 @@ updates:
10
10
directory : ' /'
11
11
# Check the npm registry for updates every day (weekdays)
12
12
schedule :
13
- interval : ' daily '
13
+ interval : ' weekly '
14
14
# Dependabot defaults to 5 open pull requests at a time
15
15
open-pull-requests-limit : 100
16
+ # ignore versions already covered by a range
17
+ # e.g: ^1.2.3 -> 1.2.4, would be ignored
18
+ versioning-strategy : increase-if-necessary
19
+
20
+ # Cooldown is the number of days after a release to wait until opening a PR
21
+ # This gives us more confidence changes can be merged because changes have been community tested.
22
+ # See: https://github.blog/changelog/2025-07-01-dependabot-supports-configuration-of-a-minimum-package-age/
23
+ cooldown :
24
+ default-days : 14
25
+ semver-major-days : 30
26
+ semver-minor-days : 14
27
+ semver-patch-days : 14
16
28
17
- # Group together PRs of interdependant packages
18
29
groups :
30
+
31
+ # Group together PRs of interdependant packages
19
32
aws-sdk :
20
33
patterns :
21
34
- ' @aws-sdk/client-dynamodb'
@@ -30,3 +43,21 @@ updates:
30
43
patterns :
31
44
- ' prisma'
32
45
- ' @prisma/client'
46
+ jest-core :
47
+ patterns :
48
+ - ' jest'
49
+ - ' jest-circus'
50
+ react :
51
+ patterns :
52
+ - ' react'
53
+ - ' react-dom'
54
+
55
+ # Group all patch updates not accounted for in prior groups in a single PR.
56
+ # This reduces the number of PRs to review and rebase.
57
+ # We skip development dependencies because those are auto-merged by .github/workflows/dependabot_auto_merge.yml
58
+ patch-updates :
59
+ patterns :
60
+ - " *"
61
+ update-types :
62
+ - " patch"
63
+ dependency-type : " production"
You can’t perform that action at this time.
0 commit comments