-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e45e0f
commit 50f76ad
Showing
1 changed file
with
6 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
# Configuration for Dependabot | ||
version: 2 | ||
updates: | ||
# Enable updates for npm (Node.js) | ||
- package-ecosystem: "npm" | ||
directory: "/" # The package.json is in the root directory of the repo | ||
- package-ecosystem: "npm" # For Node.js projects using npm | ||
directory: "/" # Location of package.json and package-lock.json | ||
schedule: | ||
interval: "weekly" # Check for updates once a week | ||
open-pull-requests-limit: 5 # Limits the number of open pull requests to 10 | ||
commit-message: | ||
prefix: "chore" # Prefix to denote maintenance changes in commit messages | ||
include: "scope" # Include the scope of the dependency in the commit message | ||
interval: "weekly" # How often to check for updates | ||
open-pull-requests-limit: 5 # Limits the number of open pull requests Dependabot will create | ||
|
||
|
||
|