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
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ updates:
# Go modules
- package-ecosystem: "gomod"
directory: "/"
# Target the integration branch — the repo's workflow is "PRs target develop,
# never main". Without this, dependabot bases PRs on the default branch (main),
# which can be behind develop and fail CI (e.g. a chi bump flagging RealIP that
# develop has already removed).
target-branch: "develop"
schedule:
interval: "weekly"
day: "monday"
Expand Down Expand Up @@ -36,6 +41,7 @@ updates:
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "develop"
schedule:
interval: "weekly"
day: "monday"
Expand All @@ -53,6 +59,7 @@ updates:
# Docker
- package-ecosystem: "docker"
directory: "/"
target-branch: "develop"
schedule:
interval: "weekly"
day: "monday"
Expand Down