From 5a29c101ad72cf57a038794e6ccccaefde6792c4 Mon Sep 17 00:00:00 2001 From: Erik Rose Date: Thu, 2 Apr 2026 13:03:12 -0400 Subject: [PATCH] Explicitly configure dependabot so it detects more than just root-level Python. --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e2fec6d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directories: + - "/" + - "/examples/*" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "cargo" + directories: + - "/" + - "/crates/wasiless" + schedule: + interval: "weekly" + open-pull-requests-limit: 10