From ec2602307db757fa1f46cb71b8c8661310736f2d Mon Sep 17 00:00:00 2001 From: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com> Date: Fri, 20 Jun 2025 11:50:37 +0200 Subject: [PATCH] Merge pull request #5391 from reneleonhardt/feat/add-dependabot feat: add dependabot for cargo and npm --- .github/dependabot.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 000000000..324ab3702 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,17 @@ +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#package-ecosystem- +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "src-tauri" + schedule: + interval: "weekly" + - package-ecosystem: "npm" + directories: + - "/" + - "core" + - "docs" + - "extensions" + - "extensions/*" + - "web-app" + schedule: + interval: "weekly"