Files
wehub-resource-sync 6db8fca185
docmd CI verification / verify (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:31:55 +08:00

44 lines
1.3 KiB
YAML

version: 2
updates:
# -------------------------------------------------------
# 1. GitHub Actions (Universal for all your projects)
# Keeps your workflow files (checkout, setup-node) updated
# -------------------------------------------------------
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
groups:
actions:
patterns:
- "*"
# -------------------------------------------------------
# 2. NPM (Specific to tree-fs / Node projects)
# -------------------------------------------------------
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
# Ignore major updates automatically to prevent breaking changes
# Remove this 'ignore' block if you want to see v1 -> v2 updates
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
groups:
# Group all minor/patch updates into one PR
npm-dependencies:
patterns:
- "*"
# -------------------------------------------------------
# 3. (Optional) Uncomment for Python projects
# -------------------------------------------------------
# - package-ecosystem: "pip"
# directory: "/"
# schedule:
# interval: "weekly"
# groups:
# python-deps:
# patterns:
# - "*"