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
32 changes: 6 additions & 26 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ version: 2

updates:
# ── npm: root workspace ────────────────────────────────────────────────────
# flowfi is a single npm workspace (frontend + backend hoisted into one root
# package-lock.json). Dependabot must update from the workspace root so the
# root lockfile CI runs `npm ci` against stays in sync. Per-directory entries
# for /frontend and /backend only touched their package.json without updating
# the root lockfile, so every PR they opened failed `npm ci` with
# "lock file's X does not satisfy Y". One root entry covers all workspaces.
- package-ecosystem: "npm"
directory: "/"
schedule:
Expand All @@ -14,32 +20,6 @@ updates:
- "minor"
- "patch"

# ── npm: frontend ──────────────────────────────────────────────────────────
- package-ecosystem: "npm"
directory: "/frontend"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 10
groups:
minor-and-patch:
update-types:
- "minor"
- "patch"

# ── npm: backend ───────────────────────────────────────────────────────────
- package-ecosystem: "npm"
directory: "/backend"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 10
groups:
minor-and-patch:
update-types:
- "minor"
- "patch"

# ── Cargo: contracts ───────────────────────────────────────────────────────
- package-ecosystem: "cargo"
directory: "/contracts"
Expand Down
Loading