mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-03-14 10:01:52 +00:00
chore(dependabot): Allows only security patches (#4075)
* feat(dependabot): Add dependabot to check for vulnerabilies and update dependencies --------- Signed-off-by: BLANKatGITHUB <131886247+BLANKatGITHUB@users.noreply.github.com> Signed-off-by: Blanky <131886247+BLANKatGITHUB@users.noreply.github.com>
This commit is contained in:
38
.github/dependabot.yml
vendored
38
.github/dependabot.yml
vendored
@ -5,6 +5,13 @@ updates:
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
|
||||
open-pull-requests-limit: 1
|
||||
groups:
|
||||
actions:
|
||||
patterns:
|
||||
- "*"
|
||||
|
||||
|
||||
- package-ecosystem: "gomod"
|
||||
directories:
|
||||
- "/contrib/charts/dragonfly"
|
||||
@ -12,9 +19,40 @@ updates:
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
|
||||
open-pull-requests-limit: 1
|
||||
#uncomment it to group dependency updates
|
||||
#groups:
|
||||
#go-mod:
|
||||
#patterns:
|
||||
#- "*"
|
||||
ignore:
|
||||
# Disable all updates except security updates
|
||||
#remove an item from ignore list to get dependency updates of that kind
|
||||
- dependency-name: "*"
|
||||
update-types:
|
||||
- "version-update:semver-major"
|
||||
- "version-update:semver-minor"
|
||||
- "version-update:semver-patch"
|
||||
|
||||
|
||||
|
||||
- package-ecosystem: "pip"
|
||||
directories:
|
||||
- "/tests/dragonfly"
|
||||
- "/tools"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
|
||||
#uncomment it to group dependency updates
|
||||
#groups:
|
||||
#py-dep:
|
||||
#patterns:
|
||||
#- "*"
|
||||
ignore:
|
||||
# Disable all updates except security updates
|
||||
#remove an item from ignore list to get dependency updates of that kind
|
||||
- dependency-name: "*"
|
||||
update-types:
|
||||
- "version-update:semver-major"
|
||||
- "version-update:semver-minor"
|
||||
- "version-update:semver-patch"
|
||||
|
Reference in New Issue
Block a user