Skip to content

Commit 9885f33

Browse files
authored
Create dependabot.yml
Signed-off-by: KIDI'S-TECH <[email protected]>
1 parent e0bc88d commit 9885f33

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/dependabot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
# Configuration for Dockerfile
9+
- package-ecosystem: "docker"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"
13+
# Disable all pull requests for Docker dependencies
14+
open-pull-requests-limit: 0
15+
16+
# Configuration for npm
17+
- package-ecosystem: "npm"
18+
directory: "/"
19+
schedule:
20+
interval: "weekly"
21+
ignore:
22+
# Ignore updates to packages that start with 'aws'
23+
# Wildcards match zero or more arbitrary characters
24+
- dependency-name: "aws*"
25+
# Ignore some updates to the 'express' package
26+
- dependency-name: "express"
27+
# Ignore only new versions for 4.x and 5.x
28+
versions: ["4.x", "5.x"]
29+
# For all packages, ignore all patch updates
30+
- dependency-name: "*"
31+
update-types: ["version-update:semver-patch"]

0 commit comments

Comments
 (0)