Skip to content

Commit 4a35bfe

Browse files
🩹 [Patch]: Add labels to Dependabot updates for better categorization (#84)
## Description This pull request adds labels to Dependabot configuration for both GitHub Actions and NuGet updates. This will help categorize and filter automated pull requests more easily. - Dependabot configuration improvements: * Added `dependencies` and `github-actions` labels to GitHub Actions updates in `.github/dependabot.yml`. * Added `dependencies` and `nuget` labels to NuGet updates in `.github/dependabot.yml`.
1 parent 066d956 commit 4a35bfe

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ā€Ž.github/dependabot.ymlā€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@ version: 2
77
updates:
88
- package-ecosystem: github-actions # See documentation for possible values
99
directory: / # Location of package manifests
10+
labels:
11+
- dependencies
12+
- github-actions
1013
schedule:
1114
interval: weekly
1215
- package-ecosystem: nuget # See documentation for possible values
1316
directory: / # Location of package manifests
17+
labels:
18+
- dependencies
19+
- nuget
1420
schedule:
1521
interval: weekly

0 commit comments

Comments
Ā (0)