-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdependabot.yaml
More file actions
33 lines (33 loc) · 1.05 KB
/
dependabot.yaml
File metadata and controls
33 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: 2
updates:
- package-ecosystem: 'devcontainers'
directory: '/'
schedule:
interval: 'weekly'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
- package-ecosystem: 'npm'
directories:
- '/'
- '/client/'
- '/server/'
- '/extensions/vscode/'
schedule:
interval: 'weekly'
ignore:
## Ignore all updates for 'zod' as our 'zod' version must match the
## version of 'zod' used by the '@modelcontextprotocol/sdk' dependency.
- dependency-name: 'zod'
## Ignore all updates for '@types/vscode' as its version tracks VS Code
## minor releases and any bump would expose APIs newer than the floor
## declared by 'engines.vscode' in 'extensions/vscode/package.json'.
## Bump this manually together with 'engines.vscode' when raising the
## minimum supported VS Code version.
- dependency-name: '@types/vscode'
versioning-strategy: 'increase'
groups:
all-npm-dependencies:
patterns:
- '*'