-
Notifications
You must be signed in to change notification settings - Fork 8
Configure multi-ecosystem grouping for .NET SDK Dependabot updates #833
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,10 @@ registries: | |
| url: https://pkgs.dev.azure.com/intelliTect/_packaging/EssentialCSharp/nuget/v3/index.json | ||
| username: ${{secrets.AZURE_DEVOPS_PAT_USERNAME}} | ||
| password: ${{secrets.AZURE_DEVOPS_PAT}} | ||
| multi-ecosystem-groups: | ||
| dotnet-sdk-updates: | ||
| schedule: | ||
| interval: "weekly" | ||
| updates: | ||
| - package-ecosystem: "nuget" # See documentation for possible values | ||
| directories: | ||
|
|
@@ -30,13 +34,19 @@ updates: | |
| - package-ecosystem: "docker" | ||
| # Look for a `Dockerfile` in the `root` directory | ||
| directory: "/EssentialCSharp.Web/" | ||
| patterns: | ||
| - "*" | ||
|
Comment on lines
+37
to
+38
|
||
| multi-ecosystem-group: "dotnet-sdk-updates" | ||
| # Check for updates once a week | ||
| schedule: | ||
| interval: "weekly" | ||
|
|
||
| - package-ecosystem: "dotnet-sdk" | ||
| # Look for a `global.json` in the `root` directory | ||
| directory: "/" | ||
| patterns: | ||
| - "*" | ||
|
Comment on lines
+47
to
+48
|
||
| multi-ecosystem-group: "dotnet-sdk-updates" | ||
| # Check for updates once a week | ||
| schedule: | ||
| interval: "weekly" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
multi-ecosystem-groupssection is incorrectly indented. In YAML, top-level keys should start at column 0, but this section appears to be indented at the same level as theregistriescontent. This will cause a YAML parsing error. Themulti-ecosystem-groupskey should be at the root level, aligned withversion,registries, andupdates.