File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed
Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ # .github/dependabot.yml
2+ version : 2
3+
4+ updates :
5+ # Node / pnpm dependencies
6+ - package-ecosystem : npm
7+ directory : " /"
8+ schedule :
9+ interval : daily # check daily
10+ time : " 02:00"
11+ timezone : UTC
12+ open-pull-requests-limit : 5
13+ reviewers :
14+ - nayandas69
15+ labels :
16+ - dependencies
17+ - auto-update
18+ commit-message :
19+ prefix : " chore"
20+ prefix-scope : " deps"
21+ include : " scope"
22+ pull-request-branch-name :
23+ separator : " /"
24+ versioning-strategy : semver
25+ rebase-strategy : auto
26+ allow :
27+ - dependency-type : production
28+ - dependency-type : development
29+ # Group minor and patch updates together to reduce PR spam
30+ groups :
31+ minor-and-patch :
32+ update-types :
33+ - minor
34+ - patch
35+ # Security updates are always prioritized
36+ ignore : [] # do not ignore any production/security updates
37+
38+ # GitHub Actions updates
39+ - package-ecosystem : github-actions
40+ directory : " /"
41+ schedule :
42+ interval : weekly
43+ day : monday
44+ time : " 02:00"
45+ timezone : UTC
46+ open-pull-requests-limit : 5
47+ reviewers :
48+ - nayandas69
49+ labels :
50+ - ci
51+ - github-actions
52+ commit-message :
53+ prefix : " ci"
54+ prefix-scope : " actions"
55+ include : " scope"
You can’t perform that action at this time.
0 commit comments