-
Notifications
You must be signed in to change notification settings - Fork 793
Expand file tree
/
Copy pathdependabot.yml
More file actions
45 lines (44 loc) · 1.45 KB
/
dependabot.yml
File metadata and controls
45 lines (44 loc) · 1.45 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
34
35
36
37
38
39
40
41
42
43
44
45
# Documentation for configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
#
# Troubleshooting: Insights tab > Dependency Graph > Dependabot
# https://github.com/aws/aws-toolkit-vscode/network/updates
version: 2
updates:
- package-ecosystem: 'npm'
directory: './src.gen'
target-branch: 'master'
schedule:
interval: 'monthly'
ignore:
- dependency-name: '*' # roundabout way to ignore this entire directory, see https://github.com/dependabot/dependabot-core/issues/4364#issuecomment-2002406602
- package-ecosystem: 'npm'
directory: './' # Location of package manifests.
target-branch: 'master' # Avoid updates to "staging".
versioning-strategy: 'increase'
commit-message:
prefix: 'deps'
schedule:
interval: 'daily'
groups:
aws-sdk:
patterns:
- '@aws-sdk/*'
vscode-lsp:
patterns:
- 'vscode-lang*'
smithy:
patterns:
- '@smithy*'
- 'smithy*'
- package-ecosystem: 'github-actions'
directory: './'
target-branch: 'master' # Avoid updates to "staging".
commit-message:
prefix: 'deps'
schedule:
interval: 'daily'
groups:
github-actions:
patterns:
- '*'