mirror of
https://github.com/BradGroux/veritas-kanban.git
synced 2026-08-28 02:44:59 +00:00
Audit and resolve the open contributor and dependency backlog, stabilize the release candidate, synchronize versioned documentation, and prepare the verified 6.1.1 release.
40 lines
982 B
YAML
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'
|