This repository has been archived by the owner on Apr 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
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
Showing
1 changed file
with
22 additions
and
4 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,13 +1,31 @@ | ||
# Query daily for npm dependency updates. | ||
|
||
version: 2 | ||
|
||
updates: | ||
# Enable version updates for npm | ||
- package-ecosystem: "npm" | ||
# Look for `package.json` and `lock` files in the `root` directory | ||
|
||
# Enable version updates for github-actions. | ||
- package-ecosystem: "github-actions" | ||
|
||
# Look for ".github/workflows" in the "root" directory. | ||
directory: "/" | ||
# Check the npm registry for updates every day (weekdays) | ||
|
||
# Check for updated GitHub Actions every weekdays. | ||
schedule: | ||
interval: "daily" | ||
|
||
# Allow up to ten pull requests to be generated at any one time. | ||
open-pull-requests-limit: 10 | ||
|
||
# Enable version updates for npm. | ||
- package-ecosystem: "npm" | ||
|
||
# Look for "package.json" and "package-lock.json" files in the "root" directory. | ||
directory: "/" | ||
|
||
# Check the npm registry for updates every weekday. | ||
schedule: | ||
interval: "daily" | ||
|
||
# Allow up to ten pull requests to be generated at any one time. | ||
open-pull-requests-limit: 10 |