forked from recharts/recharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependabot.yml
37 lines (37 loc) · 1000 Bytes
/
dependabot.yml
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
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: '/'
# Check the npm registry for updates every day (weekdays)
schedule:
interval: 'daily'
# ignore all major version updates
ignore:
- dependency-name: '*'
update-types: ['version-update:semver-major']
versioning-strategy: auto
# add the 'dependencies' label to PRs
labels:
- 'dependencies'
# max of 10 PRs at a time from dependabot
open-pull-requests-limit: 10
# request maintainers to review
reviewers:
- 'recharts/maintainers'
groups:
storybook:
patterns:
- '@storybook*'
- 'storybook'
babel:
patterns:
- '@babel*'
stryker:
patterns:
- '@stryker*'
typescript-eslint:
patterns:
- '@typescript-eslint*'
- 'eslint-plugin-typescript*'