From 52931ce91d7b983082535a3aa3615a0e0f450c6d Mon Sep 17 00:00:00 2001 From: Matthew Chapman Date: Mon, 27 May 2024 15:02:03 -0400 Subject: [PATCH] Create dependabot.yml --- .github/dependabot.yml | 53 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..509eb80 --- /dev/null +++ b/.github/dependabot.yml @@ -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"