Skip to content

Commit 8de1306

Browse files
authored
Merge pull request #34 from KidiIT/KidiIT-patch-13
Create dependabot.yml
2 parents 3678eef + 1bc9c24 commit 8de1306

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/dependabot.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
# `dependabot.yml` file with updates
6+
# disabled for Docker and limited for npm
7+
8+
version: 2
9+
updates:
10+
# Configuration for Dockerfile
11+
- package-ecosystem: "docker"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"
15+
# Disable all pull requests for Docker dependencies
16+
open-pull-requests-limit: 0
17+
18+
# Configuration for npm
19+
- package-ecosystem: "npm"
20+
directory: "/"
21+
schedule:
22+
interval: "weekly"
23+
ignore:
24+
# Ignore updates to packages that start with 'aws'
25+
# Wildcards match zero or more arbitrary characters
26+
- dependency-name: "aws*"
27+
# Ignore some updates to the 'express' package
28+
- dependency-name: "express"
29+
# Ignore only new versions for 4.x and 5.x
30+
versions: ["4.x", "5.x"]
31+
# For all packages, ignore all patch updates
32+
- dependency-name: "*"
33+
update-types: ["version-update:semver-patch"]

0 commit comments

Comments
 (0)