Create dependabot.yml

This commit is contained in:
Jamie O'Meara 2021-05-18 11:33:10 -06:00 committed by GitHub
parent 86c26c7c9b
commit 18e551393b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,24 @@
# dependabot.yml file with updates
# disabled for Docker and limited for npm
version: 2
updates:
# Configuration for Dockerfile
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
# Disable all pull requests for Docker dependencies
open-pull-requests-limit: 0
# Configuration for maven
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
ignore:
# Ignore some updates to the 'bootstrap' package
- dependency-name: "bootstrap"
# Ignore only new versions for 4.x and 5.x
versions: ["4.x", "5.x"]