Skip to content
Closed
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
19 changes: 18 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ updates:
prefix: ci
prefix-development: ci
include: scope

- package-ecosystem: 'npm'
directory: '/'
directories:
- '/packages/*'
schedule:
interval: 'weekly'
ignore:
Expand All @@ -28,5 +30,20 @@ updates:
prefix: feat
prefix-development: chore
include: scope

- package-ecosystem: 'npm'
directories:
- '/'
Copy link
Copy Markdown
Member Author

@Lms24 Lms24 Mar 27, 2026

Choose a reason for hiding this comment

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

/ should only match the main package.json, which only has dev deps.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

although... we had that before and got alerted everywhere. So I don't think this is true (?)

- '/dev-packages/*'
schedule:
interval: 'weekly'
ignore:
- dependency-name: '@opentelemetry/instrumentation'
- dependency-name: '@opentelemetry/instrumentation-*'
- dependency-name: 'typescript'
versioning-strategy: increase
commit-message:
prefix: chore
include: scope
exclude-paths:
- 'dev-packages/e2e-tests/test-applications/**'
Loading