Complete dependency updater configuration #243
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR completes the Aviationexam.DependencyUpdater configuration by adding missing required fields and the nuget.config file.
Changes
.github/updater.ymlregistriesarray in updates section (references the nuget registry)labelsfield for automatic PR labeling (dependencies, nuget)commit-messageconfiguration (prefix: chore, include: scope)nuget.config(new file)updater.ymlWhy These Changes Are Needed
According to the Aviationexam.DependencyUpdater documentation, the
registriesarray in the updates section is mandatory to reference which registries (defined at root level) should be used for dependency updates.The
nuget.configfile must be present in the same directory as the solution file (repository root in this case) for the updater to correctly resolve package sources.Testing
The configuration can be tested by:
Related
This completes the setup from the previous PR that added the initial dependency updater workflow.