-
-
Notifications
You must be signed in to change notification settings - Fork 337
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dependabot: configure to use groups for npm (#3509)
- Loading branch information
Showing
1 changed file
with
26 additions
and
15 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,29 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 2 | ||
ignore: | ||
- dependency-name: "@sentry*" | ||
- package-ecosystem: gradle | ||
directory: "/android" | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 2 | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
- package-ecosystem: npm | ||
directory: '/' | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 0 # security updates only | ||
groups: | ||
# The name of the group, it will be used in PR titles and branch | ||
babel-dependencies: | ||
patterns: | ||
- '@babel/*' | ||
react-native-deps: | ||
patterns: | ||
- '@react-native/*' | ||
typescript-eslint-deps: | ||
patterns: | ||
- '@typescript-eslint/*' | ||
ignore: | ||
- dependency-name: '@sentry*' | ||
- package-ecosystem: gradle | ||
directory: '/android' | ||
schedule: | ||
interval: weekly | ||
open-pull-requests-limit: 2 | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: weekly |