veritas-kanban/.github/dependabot.yml
Brad Groux 2cfb89396d
chore(release): prepare Veritas Kanban 6.1.1
Audit and resolve the open contributor and dependency backlog, stabilize the release candidate, synchronize versioned documentation, and prepare the verified 6.1.1 release.
2026-08-22 19:55:58 -05:00

40 lines
982 B
YAML

# .github/dependabot.yml
version: 2
updates:
# npm dependencies
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
day: 'monday'
open-pull-requests-limit: 10
reviewers:
- 'BradGroux'
labels:
- 'dependencies'
ignore:
# jsdom 30 requires Node >=22.22.2 and currently breaks the Mantine UI suite.
# Keep receiving jsdom 29 patches until the runtime floor is deliberately raised.
- dependency-name: 'jsdom'
update-types:
- 'version-update:semver-major'
groups:
# Group minor/patch updates to reduce PR noise
production-dependencies:
patterns:
- '*'
update-types:
- 'minor'
- 'patch'
# GitHub Actions
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
day: 'monday'
reviewers:
- 'BradGroux'
labels:
- 'dependencies'
- 'github-actions'