Files
semantica/.github/dependabot.yml
T
KaifAhmad1 f8ce4dbf14 chore: update Dependabot configuration
- Set weekly schedule for Python dependencies
- Set monthly schedule for GitHub Actions
- Disable PR creation (monitoring only)
2025-12-03 11:58:41 +05:30

29 lines
847 B
YAML

version: 2
updates:
# Python dependencies (pip/pyproject.toml)
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 0
ignore:
# Ignore all updates (no PRs will be created)
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"]
# GitHub Actions dependencies
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 0
ignore:
# Ignore all updates (no PRs will be created)
- dependency-name: "*"
update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"]