From c0cb68c23203652d877b211e94602c73fbd8f3c1 Mon Sep 17 00:00:00 2001 From: Strahinja Jacimovic Date: Tue, 15 Oct 2024 13:46:24 +0200 Subject: [PATCH] Create dependabot.yml --- .github/dependabot.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..006f217c2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,35 @@ +# 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: "github-actions" # See documentation for possible values + # Workflow files stored in the default location of `.github/workflows`. + # (No need to specify `/.github/workflows` for `directory`. Use `directory: "/"`.) + directory: "/" # Location of package manifests + schedule: + interval: "weekly" + assignees: + - "StrahinjaJacimovic" + + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + assignees: + - "StrahinjaJacimovic" + commit-message: + prefix: "npm" + + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + assignees: + - "StrahinjaJacimovic" + commit-message: + prefix: "pip prod" + prefix-development: "pip dev"