Skip to content

Commit

Permalink
Update the dependabot config to use multi directory support (#6716)
Browse files Browse the repository at this point in the history
  • Loading branch information
VIKTORVAV99 committed May 6, 2024
1 parent 5288efd commit cd9ce8a
Showing 1 changed file with 7 additions and 27 deletions.
34 changes: 7 additions & 27 deletions .github/dependabot.yml
Expand Up @@ -13,12 +13,16 @@ updates:
- dependency-name: '*'
update-types: ['version-update:semver-patch']

# Maintain the web npm (pnpm) dependencies.
# Maintain the npm (pnpm) dependencies.
- package-ecosystem: 'npm'
directory: '/web/'
directories:
- '/web'
- '/mockserver'
# The mobile app still needs to be tested manually.
#- '/mobileapp'
schedule:
interval: 'monthly'
open-pull-requests-limit: 10
open-pull-requests-limit: 15
reviewers:
- 'VIKTORVAV99'
ignore:
Expand Down Expand Up @@ -88,27 +92,3 @@ updates:
interval: 'monthly'
reviewers:
- 'VIKTORVAV99'
# CURRENTLY DISABLED
# We had so many PRs being opened and not enough time to test each individual update,
# so for now we're disabling this and manually updating dependencies.
# This can be enabled again when we have a tests and faster CI flow.
#
# # Maintain the mockserver npm dependencies.
# - package-ecosystem: "npm"
# directory: "/mockserver/"
# schedule:
# interval: "monthly"
# open-pull-requests-limit: 5
# ignore:
# - dependency-name: "*"
# update-types: ["version-update:semver-major"]
#
# # Maintain the mobile app npm dependencies.
# - package-ecosystem: "npm"
# directory: "/mobileapp/"
# schedule:
# interval: "monthly"
# open-pull-requests-limit: 10
# ignore:
# - dependency-name: "*"
# update-types: ["version-update:semver-major"]

0 comments on commit cd9ce8a

Please sign in to comment.