-
Notifications
You must be signed in to change notification settings - Fork 4
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
103d5d3
commit 6625312
Showing
2 changed files
with
31 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for npm | ||
- package-ecosystem: "npm" | ||
# Look for `package.json` and `package-lock.json` files in the root directory | ||
directory: "/" | ||
# Check for updates weekly | ||
schedule: | ||
interval: "monthly" | ||
allow: | ||
# Allow direct updates only (for packages named in package.json) | ||
- dependency-type: "direct" | ||
# Allow up to 10 open pull requests for npm dependencies | ||
open-pull-requests-limit: 10 | ||
|
||
# Maintain dependencies for Composer | ||
- package-ecosystem: "composer" | ||
# Look for `composer.json` and `composer.lock` files in the root directory | ||
directory: "/" | ||
# Check for updates weekly | ||
schedule: | ||
interval: "monthly" | ||
allow: | ||
# Allow direct updates only (for packages named in composer.json) | ||
- dependency-type: "direct" | ||
# Allow up to 10 open pull requests for composer dependencies | ||
open-pull-requests-limit: 10 |
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