File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ # Please see the documentation for all configuration options:
2+ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
3+
4+ version : 2
5+ registries :
6+ npm-pipedrive :
7+ type : npm-registry
8+ url : https://npm-registry-proxy.pipedrive.tools
9+ token : ${{ secrets.NPM_TOKEN }}
10+ github :
11+ type : git
12+ url : https://github.com
13+ username : x-access-token
14+ password : ${{ secrets.GHA_ACCESS_TOKEN }}
15+
16+ updates :
17+ # Update config based in the comment https://github.com/dependabot/dependabot-core/issues/4993#issuecomment-1289133027
18+ - package-ecosystem : ' npm'
19+ directory : ' /'
20+ schedule :
21+ interval : ' daily'
22+ time : ' 10:00'
23+ timezone : ' Europe/Tallinn'
24+ rebase-strategy : ' disabled'
25+ registries :
26+ - npm-pipedrive
27+ - github
28+ open-pull-requests-limit : 10
29+ versioning-strategy : increase
30+ ignore :
31+ - dependency-name : ' *'
32+ update-types : ['version-update:semver-major']
33+ groups :
34+ all-minor-patch-updates :
35+ patterns :
36+ - ' *'
37+ update-types :
38+ - minor
39+ - patch
40+ - package-ecosystem : ' github-actions'
41+ directory : ' /'
42+ schedule :
43+ interval : ' daily'
44+ time : ' 10:00'
45+ timezone : ' Europe/Tallinn'
46+ open-pull-requests-limit : 10
47+ ignore :
48+ - dependency-name : ' *'
49+ update-types : ['version-update:semver-major']
You can’t perform that action at this time.
0 commit comments