Skip to content

Commit 555472b

Browse files
Refactor Dependabot configuration for NuGet and devcontainers updates (#615)
Enhance the Dependabot configuration by specifying target branches for NuGet and devcontainers updates, ensuring a more structured update process.
1 parent 46e5734 commit 555472b

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,23 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "nuget" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: "nuget"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
target-branch: "main"
13+
- package-ecosystem: "nuget"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
target-branch: "branch-v1.7.0"
18+
- package-ecosystem: "devcontainers"
19+
directory: "/"
1020
schedule:
1121
interval: "weekly"
22+
target-branch: "main"
1223
- package-ecosystem: "devcontainers"
1324
directory: "/"
1425
schedule:
1526
interval: "weekly"
27+
target-branch: "branch-v1.7.0"

0 commit comments

Comments
 (0)