Skip to content

Commit 6f4f4bf

Browse files
authored
Refactor Dependabot configuration for updates
1 parent ec2b6f3 commit 6f4f4bf

1 file changed

Lines changed: 23 additions & 13 deletions

File tree

.github/dependabot.yml

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,31 @@
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+
16
version: 2
7+
updates:
28

3-
multi-ecosystem-groups:
4-
maintenance:
9+
# Check for Nuget package updates
10+
- package-ecosystem: nuget
11+
directory: /
512
schedule:
613
interval: weekly
714
day: monday
815
time: '06:00'
9-
10-
updates:
11-
- package-ecosystem: nuget
12-
directory: /
13-
patterns:
14-
- '*'
15-
multi-ecosystem-group: maintenance
16-
16+
groups:
17+
nuget-dependencies:
18+
patterns:
19+
- '*' # Group all updates together
20+
21+
# Check for Github Actions version updates (for CI/CD)
1722
- package-ecosystem: github-actions
1823
directory: /
19-
patterns:
20-
- '*'
21-
multi-ecosystem-group: maintenance
24+
schedule:
25+
interval: weekly
26+
day: monday
27+
time: '06:00'
28+
groups:
29+
github-actions:
30+
patterns:
31+
- '*' # Group all updates together

0 commit comments

Comments
 (0)