File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Please see the documentation for all configuration options:
2+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
3+
4+ version : 2
5+ updates :
6+ # Go module dependencies
7+ - package-ecosystem : " gomod"
8+ open-pull-requests-limit : 10
9+ directory : " /" # Location of package manifests
10+ schedule :
11+ interval : " weekly"
12+ day : " tuesday"
13+ time : " 11:00"
14+ # Group minor and patch updates
15+ groups :
16+ go-dependencies :
17+ patterns :
18+ - " *"
19+ update-types :
20+ - " minor"
21+ - " patch"
22+ labels :
23+ - " dependencies"
24+ - " go"
25+ # GitHub Actions
26+ - package-ecosystem : " github-actions"
27+ open-pull-requests-limit : 10
28+ directory : " /"
29+ schedule :
30+ # Check for updates to GitHub Actions every week
31+ interval : " weekly"
32+ day : " tuesday"
33+ time : " 11:00"
34+ groups :
35+ github-actions-dependencies :
36+ patterns :
37+ - " *"
38+ update-types :
39+ - " minor"
40+ - " patch"
41+ labels :
42+ - " dependencies"
43+ - " github-actions"
You can’t perform that action at this time.
0 commit comments