Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Comment on lines +8 to +11
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The multi-ecosystem-groups section 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 the registries content. This will cause a YAML parsing error. The multi-ecosystem-groups key should be at the root level, aligned with version, registries, and updates.

Copilot uses AI. Check for mistakes.
updates:
- package-ecosystem: "nuget" # See documentation for possible values
directories:
Expand All @@ -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
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to Dependabot's multi-ecosystem grouping documentation, the patterns field is used to match dependency names within a single ecosystem's groups configuration. However, when using multi-ecosystem-group, this field is not valid at the ecosystem level. The patterns configuration should instead be part of the multi-ecosystem group definition itself if needed to filter which dependencies are grouped. Remove the patterns fields from the individual ecosystem configurations.

Copilot uses AI. Check for mistakes.
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
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to Dependabot's multi-ecosystem grouping documentation, the patterns field is used to match dependency names within a single ecosystem's groups configuration. However, when using multi-ecosystem-group, this field is not valid at the ecosystem level. The patterns configuration should instead be part of the multi-ecosystem group definition itself if needed to filter which dependencies are grouped. Remove the patterns fields from the individual ecosystem configurations.

Copilot uses AI. Check for mistakes.
multi-ecosystem-group: "dotnet-sdk-updates"
# Check for updates once a week
schedule:
interval: "weekly"
Loading