From: Giorgio Ravera <47370115+xraver@users.noreply.github.com> Date: Mon, 26 Jan 2026 17:50:16 +0000 (+0100) Subject: Add Dependabot configuration for package updates X-Git-Tag: v0.0.1~15 X-Git-Url: http://git.giorgioravera.it/?a=commitdiff_plain;h=741d5b85143ca56250b56571a1d4903638b1e4cf;p=network-manager.git Add Dependabot configuration for package updates Configure Dependabot for pip, npm, and GitHub Actions with weekly updates. --- diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..cd4b98e --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,18 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "npm" + directory: "/frontend" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"