]> git.giorgioravera.it Git - network-manager.git/commitdiff
Add Dependabot configuration for package updates
authorGiorgio Ravera <47370115+xraver@users.noreply.github.com>
Mon, 26 Jan 2026 17:50:16 +0000 (18:50 +0100)
committerGitHub <noreply@github.com>
Mon, 26 Jan 2026 17:50:16 +0000 (18:50 +0100)
Configure Dependabot for pip, npm, and GitHub Actions with weekly updates.

.github/dependabot.yaml [new file with mode: 0644]

diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
new file mode 100644 (file)
index 0000000..cd4b98e
--- /dev/null
@@ -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"