mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
- Set weekly schedule for Python dependencies - Set monthly schedule for GitHub Actions - Disable PR creation (monitoring only)
29 lines
847 B
YAML
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"]
|
|
|