-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdependabot.yml
More file actions
64 lines (61 loc) · 1.95 KB
/
dependabot.yml
File metadata and controls
64 lines (61 loc) · 1.95 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
# Documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'daily'
commit-message:
prefix: 'Dependency Updates'
ignore:
# For Eslint, ignore all Dependabot updates for version 9 until supported by peer dependencies (typescript-eslint)
- dependency-name: 'eslint'
versions: ['9.x']
groups:
# group dev dependencies together in a single pull request
dev-dependencies:
applies-to: version-updates
patterns:
- '@eslint*'
- '@swc*'
- '@types*'
- 'eslint*'
- 'jest'
- 'nodemon'
- 'prettier'
- 'ts-*'
- 'tsx'
- 'typescript*'
dev-dependencies-security-updates:
applies-to: security-updates
patterns:
- '@eslint*'
- '@swc*'
- '@types*'
- 'eslint*'
- 'jest'
- 'nodemon'
- 'prettier'
- 'ts-*'
- 'tsx'
- 'typescript*'
# group QvikChat related updates in a single pull request
qvikchat:
applies-to: version-updates
patterns:
- '@oconva/qvikchat'
qvikchat-security-updates:
applies-to: security-updates
patterns:
- '@oconva/qvikchat'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'daily'
commit-message:
prefix: 'GitHub Actions Updates'