Skip to content
Merged
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
36 changes: 13 additions & 23 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
version: 2

updates:
# Keep Pi packages in lockstep, but reduce update churn from daily patch releases.
# Keep npm dependencies fresh (security + bugfixes).
# Dependabot only allows one npm update config per directory/target-branch, so
# Pi stack grouping and general npm grouping must live in the same entry.
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
allow:
- dependency-name: "@earendil-works/pi-ai"
- dependency-name: "@earendil-works/pi-web-ui"
- dependency-name: "@earendil-works/pi-agent-core"
interval: "daily"
open-pull-requests-limit: 10
ignore:
- dependency-name: "eslint"
update-types:
- "version-update:semver-major"
groups:
pi-stack:
patterns:
Expand All @@ -21,24 +22,13 @@ updates:
update-types:
- "minor"
- "patch"

# Keep other npm dependencies fresh (security + bugfixes).
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
ignore:
- dependency-name: "eslint"
update-types:
- "version-update:semver-major"
- dependency-name: "@earendil-works/pi-ai"
- dependency-name: "@earendil-works/pi-web-ui"
- dependency-name: "@earendil-works/pi-agent-core"
groups:
npm-minor-and-patch:
patterns:
- "*"
exclude-patterns:
- "@earendil-works/pi-ai"
- "@earendil-works/pi-web-ui"
- "@earendil-works/pi-agent-core"
update-types:
- "minor"
- "patch"
Expand Down
Loading