Skip to content
Merged
Show file tree
Hide file tree
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
24 changes: 0 additions & 24 deletions .github/dependabot.yml

This file was deleted.

2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ If tests fail, identify whether failures are pre-existing vs introduced by your
- **Conventional Commits** (`.github/workflows/conventional-commits.yml`) — Validates PR titles follow the convention.
- **CodeQL** (`.github/workflows/codeql.yml`) — Static analysis for TypeScript; runs on PRs, pushes to `main`, and weekly.
- **Publish** (`.github/workflows/publish.yml`) — semantic-release to npm on `main`.
- **Dependabot** (`.github/dependabot.yml`) — Opens weekly PRs for npm and GitHub Actions dependency updates. These use `chore(deps):` and `ci(deps):` commit prefixes.
- **Renovate** (`renovate.json`) — Automated dependency updates via the Renovate GitHub App. Groups non-major npm updates, creates separate PRs for majors, and auto-merges minor/patch. Uses `chore(deps):` and `ci(deps):` commit prefixes.

## Branch & Merge Rules

Expand Down
39 changes: 39 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:weekends",
":semanticCommits",
":automergeMinor",
":automergePatch"
],
"labels": ["dependencies"],
"prHourlyLimit": 3,
"prConcurrentLimit": 5,
"rebaseWhen": "behind-base-branch",
"packageRules": [
{
"description": "Group non-major npm dependency updates",
"matchManagers": ["bun"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "npm non-major dependencies",
"commitMessagePrefix": "chore(deps):",
"labels": ["dependencies"]
},
{
"description": "Major npm dependency updates (separate PRs for review)",
"matchManagers": ["bun"],
"matchUpdateTypes": ["major"],
"commitMessagePrefix": "chore(deps):",
"labels": ["dependencies"],
"automerge": false
},
{
"description": "Group GitHub Actions updates",
"matchManagers": ["github-actions"],
"groupName": "github actions",
"commitMessagePrefix": "ci(deps):",
"labels": ["dependencies", "ci"]
}
]
}