Create dependabot.yml

This commit is contained in:
Matthew Chapman 2024-05-27 15:02:03 -04:00 committed by GitHub
parent f855b80531
commit 52931ce91d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 53 additions and 0 deletions

53
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,53 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
commit-message:
# Prefix all commit messages with "npm: "
prefix: "npm"
include: "scope"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
commit-message:
# Prefix all commit messages with "docker: "
prefix: "docker"
include: "scope"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
# Include a list of updated dependencies
# with a prefix determined by the dependency group
commit-message:
prefix: "pip prod"
prefix-development: "pip dev"
include: "scope"
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
commit-message:
# Prefix all commit messages with "github-actions: "
prefix: "github-actions"
include: "scope"
- package-ecosystem: 'maven'
directory: '/'
schedule:
interval: 'weekly'
commit-message:
# Prefix all commit messages with "maven: "
prefix: "maven"
include: "scope"