# Dependabot configuration for automated dependency updates # # Dependabot creates PRs when dependencies have new versions, # helping keep the application secure and up-to-date. version: 2 updates: # Python dependencies (pip) - package-ecosystem: "pip" directory: "/" schedule: interval: "weekly" day: "monday" time: "09:00" timezone: "America/Toronto" # Group all updates into a single PR groups: python-dependencies: patterns: - "*" # Limit open PRs to avoid overwhelm open-pull-requests-limit: 5 # Labels for PRs labels: - "dependencies" - "security" # Assign reviewer reviewers: - "cedrick2711" # GitHub Actions - package-ecosystem: "github-actions" directory: "/" schedule: interval: "monthly" time: "09:00" timezone: "America/Toronto" labels: - "dependencies" - "ci"