From 94b116ae90b4c2191c4d17ece38fb2d235029a28 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 26 May 2021 19:59:42 -0700 Subject: [PATCH] Configure Dependabot for Python dependencies With the introduction of Python-based integration tests, the Python dependencies of the project become more significant. Since we already have the Dependabot infrastructure in place for managing dependencies of the project's Go code and GitHub Actions workflows, it makes sense to do the same for the Python dependencies as well. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4ac91d2f..97cab75f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,3 +16,9 @@ updates: interval: daily labels: - "topic: infrastructure" + - package-ecosystem: pip + directory: / + schedule: + interval: daily + labels: + - "topic: infrastructure"