Last active
August 16, 2019 14:34
-
-
Save beauraF/5673ba4c33690abfa359d774aaa2ab8a to your computer and use it in GitHub Desktop.
Simple dependabot configuration for Rails
This file contains hidden or 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
version: 1 | |
update_configs: | |
- package_manager: "ruby:bundler" | |
update_schedule: "live" | |
directory: "/" | |
target_branch: "master" | |
allowed_updates: | |
- match: | |
update_type: "all" | |
dependency_type: "direct" | |
- match: | |
update_type: "security" | |
dependency_type: "indirect" | |
version_requirement_updates: "off" | |
automerged_updates: | |
- match: | |
dependency_type: "all" | |
update_type: "semver:patch" | |
- match: | |
dependency_type: "all" | |
update_type: "security:patch" | |
default_assignees: | |
- "beauraF" | |
default_labels: | |
- "dependencies" | |
- "ruby" | |
- package_manager: "javascript" | |
update_schedule: "live" | |
directory: "/" | |
target_branch: "master" | |
allowed_updates: | |
- match: | |
update_type: "all" | |
dependency_type: "direct" | |
- match: | |
update_type: "security" | |
dependency_type: "indirect" | |
version_requirement_updates: "auto" | |
automerged_updates: | |
- match: | |
dependency_type: "all" | |
update_type: "semver:patch" | |
- match: | |
dependency_type: "all" | |
update_type: "security:patch" | |
default_assignees: | |
- "beauraF" | |
default_labels: | |
- "dependencies" | |
- "javascript" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment