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
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ updates:
directory: "/sdks/python" # Location of package manifests
schedule:
interval: "daily"
exclude-paths:
- "/sdks/python/container/**"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

high

According to the Dependabot documentation, the patterns in exclude-paths are relative to the directory specified for the ecosystem. Since the directory for this block is already set to /sdks/python (line 23), the exclusion pattern should be relative to that path. Using the full path /sdks/python/container/** will likely cause Dependabot to look for a path relative to the manifest directory, effectively searching for /sdks/python/sdks/python/container/**, which will not match the intended files.

    - "container/**"

- package-ecosystem: "gradle"
directory: "/" # Location of package manifests
schedule:
Expand Down
Loading