ci: Add Dependabot configuration for version updates

This commit is contained in:
courtmanr@gmail.com
2025-04-20 19:43:56 +01:00
parent fcb8b8da3c
commit a251a81efb
+22
View File
@@ -0,0 +1,22 @@
version: 2
updates:
# Enable version updates for npm in the root directory
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
target-branch: "main"
# Optional: Add labels to Dependabot PRs
labels:
- "dependencies"
- "dependabot"
# Enable version updates for npm in the server directory
- package-ecosystem: "npm"
directory: "/server"
schedule:
interval: "daily"
target-branch: "main"
labels:
- "dependencies"
- "dependabot"