-
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.
Merge pull request #191 from mlibrary/dependabot-group-updates
`dependabot` group updates
- Loading branch information
Showing
1 changed file
with
34 additions
and
23 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,34 +1,45 @@ | ||
version: 2 | ||
updates: | ||
# Enable version updates for npm | ||
- package-ecosystem: npm | ||
# Look for `package.json` and `lock` files in the `root` directory | ||
directory: / | ||
# Check the npm registry for updates every first day of the month at 6am EST | ||
# For npm dependencies | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
timezone: America/Detroit | ||
interval: "monthly" | ||
time: "06:00" | ||
# Exclude `chai` as it is a breaking change | ||
ignore: | ||
- dependency-name: chai | ||
# Assign to the lead developer | ||
day: "monday" | ||
timezone: "America/Detroit" | ||
commit-message: | ||
prefix: "deps" | ||
include: "scope" | ||
open-pull-requests-limit: 5 | ||
assignees: | ||
- erinesullivan | ||
# Add the `dependencies` label | ||
- "erinesullivan" | ||
labels: | ||
- dependencies | ||
# Let dependabot create up to 10 PRs at a time | ||
open-pull-requests-limit: 10 | ||
- "dependencies" | ||
ignore: | ||
- dependency-name: "chai" | ||
groups: | ||
group-all-npm-updates: | ||
patterns: | ||
- "*" | ||
|
||
# Enable version updates for GitHub Actions with similar scheduling details | ||
- package-ecosystem: github-actions | ||
directory: / | ||
# For GitHub Actions updates | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
timezone: America/Detroit | ||
interval: "monthly" | ||
time: "06:00" | ||
day: "monday" | ||
timezone: "America/Detroit" | ||
commit-message: | ||
prefix: "deps" | ||
include: "scope" | ||
open-pull-requests-limit: 5 | ||
assignees: | ||
- erinesullivan | ||
- "erinesullivan" | ||
labels: | ||
- dependencies | ||
- "dependencies" | ||
groups: | ||
group-all-github-actions-updates: | ||
patterns: | ||
- "*" |