-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only automerge Dependency updates in branch
- Loading branch information
DutchmanNL
committed
Mar 17, 2021
1 parent
9d37c62
commit 2071f0a
Showing
2 changed files
with
13 additions
and
17 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,17 +1,17 @@ | ||
# Configure here which dependency updates should be merged automatically. | ||
# The recommended configuration is the following: | ||
- match: | ||
# Only merge patches for production dependencies | ||
dependency_type: production | ||
update_type: "semver:patch" | ||
# Only merge patches for production dependencies | ||
dependency_type: production | ||
update_type: "semver:patch" | ||
- match: | ||
# Except for security fixes, here we allow minor patches | ||
dependency_type: production | ||
update_type: "security:minor" | ||
# Except for security fixes, here we allow minor patches | ||
dependency_type: production | ||
update_type: "security:minor" | ||
- match: | ||
# and development dependencies can have a minor update, too | ||
dependency_type: development | ||
update_type: "semver:minor" | ||
# and development dependencies can have a minor update, too | ||
dependency_type: development | ||
update_type: "semver:minor" | ||
|
||
# The syntax is based on the legacy dependabot v1 automerged_updates syntax, see: | ||
# https://dependabot.com/docs/config-file/#automerged_updates |
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,12 +1,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
time: "04:00" | ||
timezone: Europe/Berlin | ||
open-pull-requests-limit: 20 | ||
assignees: | ||
- iobroker-community-adapters | ||
versioning-strategy: increase | ||
interval: "daily" | ||
target-branch: "dependencyAutoUpdate" | ||
open-pull-requests-limit: 30 |