From b35c56606d0294b00f066637c5cccf66b62eec6c Mon Sep 17 00:00:00 2001 From: rdimaio Date: Tue, 17 Dec 2024 12:40:12 +0100 Subject: [PATCH] Add dependabot config for GH actions, dev containers, npm and pip; fix #421 --- .github/dependabot.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..5975a52d55 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,25 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10 + - package-ecosystem: devcontainers + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10 + - package-ecosystem: npm + directory: "/website" + schedule: + interval: weekly + open-pull-requests-limit: 10 + - package-ecosystem: pip + directory: "/tools" + schedule: + interval: weekly + groups: + python-packages: + patterns: + - "*" \ No newline at end of file