Skip to content
Open
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
26 changes: 26 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2
updates:
- package-ecosystem: gradle
directories:
- "/"
- "/plugins"
Comment on lines +4 to +6

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔍 Directory list does not match the description's "/" scope**

The PR description says the gradle ecosystem targets /**, but the file enumerates only / and /plugins. In practice this covers the whole repo because Dependabot's Gradle fetcher follows include entries in settings.gradle (settings.gradle includes :sdk, :sdkMock, :sample; plugins/settings.gradle includes :library, :sample), so all build files are reachable. Worth confirming intent though: if a new Gradle build root is added elsewhere later (not included from either settings file), it will silently not be watched, whereas a /** glob would pick it up.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

schedule:
interval: weekly
open-pull-requests-limit: 10
cooldown:
default-days: 3
groups:
minor-and-patch:
patterns: ["*"]
update-types: ["minor", "patch"]
Comment thread
tnj marked this conversation as resolved.

- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
cooldown:
default-days: 3
groups:
actions:
patterns: ["*"]
update-types: ["minor", "patch"]
Loading