mirror of https://github.com/mdchap/pubapptest.git
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
|
# 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"
|