-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathdependabot.yml
More file actions
31 lines (31 loc) · 1.02 KB
/
dependabot.yml
File metadata and controls
31 lines (31 loc) · 1.02 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
# This is the dependabot configuration file that automates dependency updates
# Updates section configures how dependabot should handle dependency updates:
#
# - Monitors NPM dependencies in the root directory
# - Checks for updates weekly
# - Groups updates based on their type (dev grouped by minor/patch or prod grouped by patch)
#
# - Monitors GitHub Actions dependencies in the root directory
# - Checks for updates weekly
#
# Learn more at https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#configuration-options-for-the-dependabotyml-file
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: weekly
groups:
npm-development:
dependency-type: development
update-types:
- minor
- patch
npm-production:
dependency-type: production
update-types:
- patch
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly