From 45cb61af26b500b4a31010f642f5dd315df9ddf2 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Wed, 12 Oct 2022 16:50:28 +0200 Subject: [PATCH] add dependabot config - PRs for GH actions, only alerts for Python packages --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..ae7979ca9f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: +- package-ecosystem: github-actions + directory: "/" + schedule: + interval: daily + timezone: Europe/Amsterdam + open-pull-requests-limit: 5 +- package-ecosystem: pip + directory: "/" + schedule: + interval: daily + timezone: Europe/Amsterdam + open-pull-requests-limit: 0 -- 2.47.3