We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd5612 commit c9e96f3Copy full SHA for c9e96f3
.github/dependabot.yml
@@ -0,0 +1,20 @@
1
+# Basic dependabot.yml file with
2
+# minimum configuration for two package managers
3
+
4
+version: 2
5
+updates:
6
+ # Enable version updates for npm
7
+ - package-ecosystem: "npm"
8
+ # Look for `package.json` and `lock` files in the `root` directory
9
+ directory: "/"
10
+ # Check the npm registry for updates every day (weekdays)
11
+ schedule:
12
+ interval: "daily"
13
14
+ # Enable version updates for Docker
15
+ - package-ecosystem: "docker"
16
+ # Look for a `Dockerfile` in the `root` directory
17
+ directory: "/.devcontainer"
18
+ # Check for updates once a week
19
20
+ interval: "weekly"
0 commit comments