-
Notifications
You must be signed in to change notification settings - Fork 0
chore: add dependabot config #1
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
base: main
Are you sure you want to change the base?
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 |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: npm | ||
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| open-pull-requests-limit: 10 | ||
| - package-ecosystem: npm | ||
| directory: /sdk-quickstart | ||
| schedule: | ||
| interval: weekly | ||
| open-pull-requests-limit: 10 | ||
| - package-ecosystem: npm | ||
| directory: /adk-hello-agent | ||
| schedule: | ||
| interval: weekly | ||
|
Comment on lines
+8
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check for workspace configuration in package.json files
echo "=== Checking for npm workspace setup ==="
# Check root package.json for workspaces field
if [ -f package.json ]; then
echo "Root package.json:"
cat package.json | jq -r 'if .workspaces then "Workspaces: \(.workspaces)" else "No workspaces field" end'
fi
echo -e "\n=== Checking each directory's package.json ==="
for dir in sdk-quickstart mcp-server-setup adk-hello-agent; do
if [ -f "$dir/package.json" ]; then
echo -e "\n$dir/package.json exists"
cat "$dir/package.json" | jq -r '.name // "no name"' | sed 's/^/ Package name: /'
else
echo -e "\n$dir/package.json NOT FOUND"
fi
done
echo -e "\n=== Checking for lockfiles ==="
fd -t f 'package-lock.json|yarn.lock|pnpm-lock.yaml' -x echo "Found: {}"Repository: wave-av/examples Length of output: 430 Remove The configuration for To fix:
Additionally, consider these improvements for the remaining directories:
- package-ecosystem: npm
directory: /sdk-quickstart
schedule:
interval: weekly
open-pull-requests-limit: 10
🤖 Prompt for AI Agents |
||
| open-pull-requests-limit: 10 | ||
|
devin-ai-integration[bot] marked this conversation as resolved.
Comment on lines
+1
to
+17
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔍 No lockfiles present; updates will be manifest-only The repo contains no Was this helpful? React with 👍 or 👎 to provide feedback. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Informational observation, not a config bug: the repo intentionally has no lockfiles, and manifest-only range bumps are the expected Dependabot behavior here. Adding lockfiles is out of scope for this PR. |
||
Uh oh!
There was an error while loading. Please reload this page.