Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Dependabot keeps dependencies current without drowning the repo in pull
# requests. Two deliberate choices fit this project:
#
# - Major updates are ignored. The stack is pinned for Node 18 (React Router 6,
# Vite 5, Tailwind 3...), so a major bump would break CI on every run; those
# are handled by hand, when the Node baseline moves.
# - Minor and patch updates are grouped into a single weekly PR per ecosystem,
# so the strict CI (five checks, tests, bundle budget) vets them together
# rather than one noisy PR at a time.
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: weekly
day: monday
open-pull-requests-limit: 5
labels:
- dependencies
# Conventional Commits, like the rest of the history: "chore(deps): ...".
commit-message:
prefix: chore
include: scope
groups:
npm-minor-patch:
patterns:
- '*'
update-types:
- minor
- patch
ignore:
# Majors are intentional, manual upgrades — never automated here.
- dependency-name: '*'
update-types:
- version-update:semver-major

- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: monday
labels:
- dependencies
- github-actions
commit-message:
prefix: ci
include: scope
groups:
github-actions:
patterns:
- '*'
Comment thread
coderabbitai[bot] marked this conversation as resolved.
update-types:
- minor
- patch
ignore:
# Like npm: a major action bump can change the runner contract and break
# CI, so it is a manual upgrade rather than an automated one.
- dependency-name: '*'
update-types:
- version-update:semver-major
Loading