Skip to content

Commit 3100151

Browse files
authored
Complete dependency updater configuration (#243)
chore: complete dependency updater configuration - Add missing registries array to updater.yml updates section - Add labels field for PR labeling (dependencies, nuget) - Add commit-message configuration (prefix: chore, include: scope) - Create nuget.config with public NuGet.org registry These changes ensure the Aviationexam.DependencyUpdater GitHub Action works correctly by providing complete configuration as per documentation.
1 parent 7f2b4ee commit 3100151

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/updater.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ updates:
1212
target-branch: "main"
1313
targetFramework: net10.0
1414
execute-restore: true
15+
registries:
16+
- nuget
17+
labels:
18+
- "dependencies"
19+
- "nuget"
20+
commit-message:
21+
prefix: "chore"
22+
include: "scope"
1523
groups:
1624
microsoft:
1725
patterns:

nuget.config

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<clear />
5+
<add key="nuget"
6+
value="https://api.nuget.org/v3/index.json"
7+
protocolVersion="3" />
8+
9+
</packageSources>
10+
<packageSourceMapping>
11+
<packageSource key="nuget">
12+
<package pattern="*" />
13+
</packageSource>
14+
</packageSourceMapping>
15+
</configuration>

0 commit comments

Comments
 (0)