File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # Basic dependabot.yml file with
2+ # minimum configuration for two package managers
3+
4+ version : 2
5+ updates :
6+ # Enable version updates for python
7+ - package-ecosystem : " pip"
8+ # Look for a `requirements` in the `root` directory
9+ directory : " /"
10+ # Check for updates once a month
11+ schedule :
12+ interval : " monthly"
13+ groups :
14+ pip :
15+ patterns :
16+ - " *"
17+ # Labels on pull requests for version updates only
18+ labels : ["maintenance"]
19+
20+ # Enable version updates for GitHub Actions
21+ - package-ecosystem : " github-actions"
22+ directory : " /"
23+ # Check for updates once a monthly
24+ schedule :
25+ interval : " monthly"
26+ groups :
27+ actions :
28+ patterns :
29+ - " *"
30+ # Labels on pull requests for version updates only
31+ labels : ["maintenance"]
You can’t perform that action at this time.
0 commit comments