File tree Expand file tree Collapse file tree 1 file changed +56
-0
lines changed
Expand file tree Collapse file tree 1 file changed +56
-0
lines changed Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+ version : 2
6+
7+ updates :
8+ # GitHub Actions - grouped
9+ - package-ecosystem : " github-actions"
10+ directory : " /"
11+ schedule :
12+ interval : " monthly"
13+ target-branch : " dependabotchanges"
14+ commit-message :
15+ prefix : " build"
16+ open-pull-requests-limit : 10
17+ groups :
18+ github-actions :
19+ patterns :
20+ - " *"
21+
22+ # Python backend dependencies - grouped
23+ - package-ecosystem : " pip"
24+ directory : " /src/api"
25+ schedule :
26+ interval : " monthly"
27+ target-branch : " dependabotchanges"
28+ commit-message :
29+ prefix : " build"
30+ open-pull-requests-limit : 10
31+ groups :
32+ backend-deps :
33+ patterns :
34+ - " *"
35+
36+ # Frontend npm dependencies - grouped
37+ - package-ecosystem : " npm"
38+ directory : " /src/App"
39+ schedule :
40+ interval : " monthly"
41+ target-branch : " dependabotchanges"
42+ commit-message :
43+ prefix : " build"
44+ open-pull-requests-limit : 10
45+ registries :
46+ - npm_public_registry
47+ groups :
48+ frontend-deps :
49+ patterns :
50+ - " *"
51+
52+ registries :
53+ npm_public_registry :
54+ type : " npm-registry"
55+ url : " https://registry.npmjs.org/"
56+ token : ${{ secrets.TOKEN }}
You can’t perform that action at this time.
0 commit comments