-
Notifications
You must be signed in to change notification settings - Fork 433
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configs for version dependency updates
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 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,47 @@ | ||
# Enable Dependabot NPM updates for all dependencies on a weekly basis | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
# Allow up to 10 open PRs for dependencies | ||
open-pull-requests-limit: 10 | ||
# Group together Angular package upgrades | ||
groups: | ||
# Group together all minor/patch version updates for Angular in a single PR | ||
angular: | ||
applies-to: version-updates | ||
patterns: | ||
- "@angular*" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
# Group together all security updates for Angular. Only accept minor/patch types. | ||
angular-security: | ||
applies-to: security-updates | ||
patterns: | ||
- "@angular*" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
# Group together all minor/patch version updates for NgRx in a single PR | ||
ngrx: | ||
applies-to: version-updates | ||
patterns: | ||
- "@ngrx*" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
# Group together all security updates for NgRx. Only accept minor/patch types. | ||
ngrx-security: | ||
applies-to: security-updates | ||
patterns: | ||
- "@ngrx*" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
ignore: | ||
# Ignore all major version updates for all dependencies. We'll only automate minor/patch updates. | ||
- dependency-name: "*" | ||
update-types: ["version-update:semver-major"] |