mirror of https://github.com/mdchap/pubapptest.git
Create dependabot.yml
This commit is contained in:
parent
f855b80531
commit
52931ce91d
|
@ -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"
|
Loading…
Reference in New Issue