File tree Expand file tree Collapse file tree 1 file changed +66
-0
lines changed
Expand file tree Collapse file tree 1 file changed +66
-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/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+ version : 2
7+ updates :
8+ # Enable version updates for NuGet packages in the main project
9+ - package-ecosystem : " nuget"
10+ directory : " /src/UnturnedRedistUpdateTool"
11+ schedule :
12+ interval : " weekly"
13+ day : " monday"
14+ time : " 09:00"
15+ timezone : " UTC"
16+ open-pull-requests-limit : 10
17+ reviewers :
18+ - " @me"
19+ assignees :
20+ - " @me"
21+ commit-message :
22+ prefix : " nuget"
23+ include : " scope"
24+ labels :
25+ - " dependencies"
26+ - " nuget"
27+
28+ # Enable version updates for NuGet packages in the test project
29+ - package-ecosystem : " nuget"
30+ directory : " /tests/UnturnedRedistUpdateTool.Tests"
31+ schedule :
32+ interval : " weekly"
33+ day : " monday"
34+ time : " 09:00"
35+ timezone : " UTC"
36+ open-pull-requests-limit : 10
37+ reviewers :
38+ - " @me"
39+ assignees :
40+ - " @me"
41+ commit-message :
42+ prefix : " nuget"
43+ include : " scope"
44+ labels :
45+ - " dependencies"
46+ - " nuget"
47+
48+ # Enable version updates for GitHub Actions
49+ - package-ecosystem : " github-actions"
50+ directory : " /"
51+ schedule :
52+ interval : " weekly"
53+ day : " monday"
54+ time : " 09:00"
55+ timezone : " UTC"
56+ open-pull-requests-limit : 10
57+ reviewers :
58+ - " @me"
59+ assignees :
60+ - " @me"
61+ commit-message :
62+ prefix : " github-actions"
63+ include : " scope"
64+ labels :
65+ - " dependencies"
66+ - " github-actions"
You can’t perform that action at this time.
0 commit comments