Skip to content

Commit 328becd

Browse files
authored
Update dependabot.yml (#19)
2 parents f68396b + fa559fb commit 328becd

File tree

1 file changed

+11
-25
lines changed

1 file changed

+11
-25
lines changed

.github/dependabot.yml

+11-25
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,20 @@
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-
# `dependabot.yml` file with updates
7-
# disabled for Docker and limited for npm
1+
# Basic `dependabot.yml` file with
2+
# minimum configuration for two package managers
83

94
version: 2
105
updates:
11-
# Configuration for Dockerfile
12-
- package-ecosystem: "docker"
6+
# Enable version updates for npm
7+
- package-ecosystem: "npm"
8+
# Look for `package.json` and `lock` files in the `root` directory
139
directory: "/"
10+
# Check the npm registry for updates every day (weekdays)
1411
schedule:
15-
interval: "weekly"
16-
# Disable all pull requests for Docker dependencies
17-
open-pull-requests-limit: 0
12+
interval: "daily"
1813

19-
# Configuration for npm
20-
- package-ecosystem: "npm"
14+
# Enable version updates for Docker
15+
- package-ecosystem: "docker"
16+
# Look for a `Dockerfile` in the `root` directory
2117
directory: "/"
18+
# Check for updates once a week
2219
schedule:
2320
interval: "weekly"
24-
ignore:
25-
# Ignore updates to packages that start with 'aws'
26-
# Wildcards match zero or more arbitrary characters
27-
- dependency-name: "aws*"
28-
# Ignore some updates to the 'express' package
29-
- dependency-name: "express"
30-
# Ignore only new versions for 4.x and 5.x
31-
versions: ["4.x", "5.x"]
32-
# For all packages, ignore all patch updates
33-
- dependency-name: "*"
34-
update-types: ["version-update:semver-patch"]

0 commit comments

Comments
 (0)