forked from rubytoolbox/catalog
-
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.
Configure depfu and enable automated updates
- Loading branch information
Showing
1 changed file
with
17 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,17 @@ | ||
# | ||
# This enables configures depfu to utilize automated merges and at the | ||
# same time employ the "reasonably up to date" strategy, which lets non- | ||
# security releases pending for a while until submitting the PR to allow | ||
# the dust to settle on new releases first. | ||
# | ||
# Depfu configuration reference: | ||
# https://docs.depfu.com/article/41-config-files | ||
# https://depfu.com/blog/configure-depfu-with-config-files | ||
bundler: | ||
automerge_dev_strategy: minor | ||
automerge_method: merge | ||
automerge_strategy: minor | ||
engine_update_strategy: minor | ||
pull_request_limit: 7 | ||
reasonably_up_to_date: true | ||
update_strategy: individual |