Skip to content

Commit

Permalink
Update dependabot config
Browse files Browse the repository at this point in the history
  • Loading branch information
phavekes committed Feb 18, 2025
1 parent dab860e commit d127dad
Showing 1 changed file with 59 additions and 5 deletions.
64 changes: 59 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,62 @@
---
version: 2
updates:
- package-ecosystem: npm
directory: "/**"
# Enable version updates for Docker
- package-ecosystem: "docker"
# Look for a `Dockerfile` in the `root` directory
directories:
- "/myconext-server/docker/"
- "/servicedesk-gui/docker/"
- "/myconext-gui/docker/"
- "/account-gui/docker/"
schedule:
interval: "weekly"
allow:
- dependency-type: "production"
interval: "daily"
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
# Maintain dependencies for npm
- package-ecosystem: "npm"
directories:
- "/public-gui/"
- "/servicedesk-gui/"
- "/myconext-gui/"
- "/account-gui/"
schedule:
interval: "daily"
open-pull-requests-limit: 25
groups:
frontends-prod:
applies-to: version-updates
dependency-type: production
update-types:
- "minor"
- "patch"
frontends-dev:
applies-to: version-updates
dependency-type: development
update-types:
- "minor"
- "patch"
# Maintain dependencies for server
- package-ecosystem: "maven"
directories:
- "/**"
schedule:
interval: "daily"
open-pull-requests-limit: 25
groups:
backend-prod:
applies-to: version-updates
dependency-type: production
update-types:
- "minor"
- "patch"
backend-dev:
applies-to: version-updates
dependency-type: development
update-types:
- "minor"
- "patch"

0 comments on commit d127dad

Please sign in to comment.