Skip to content

Commit 818dd82

Browse files
Create dependabot.yml
1 parent 9902b72 commit 818dd82

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This is the dependabot configuration file that automates dependency updates
2+
# Updates section configures how dependabot should handle dependency updates:
3+
# - Monitors NPM dependencies in the root directory
4+
# - Checks for updates weekly
5+
# - Groups updates based on their type (dev grouped by minor/patch or prod grouped by patch)
6+
#
7+
# 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
8+
version: 2
9+
updates:
10+
- package-ecosystem: npm
11+
directory: /
12+
schedule:
13+
interval: weekly
14+
groups:
15+
npm-development:
16+
dependency-type: development
17+
update-types:
18+
- minor
19+
- patch
20+
npm-production:
21+
dependency-type: production
22+
update-types:
23+
- patch

0 commit comments

Comments
 (0)