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
122 changes: 0 additions & 122 deletions .github/dependabot.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.worktrees/
7 changes: 4 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ Centralized defaults and automation for all `benhigham` GitHub repositories:
release-changesets.yml # Reusable: versioning and npm publishing via Changesets
ISSUE_TEMPLATE/ # Issue form templates
pull_request_template.md # Default PR template
dependabot.yml # Dependabot config (npm, github-actions, docker, terraform, etc.)
FUNDING.yml
.claude/
commands/ # Reference command files — copy to per-repo as needed
Expand Down Expand Up @@ -52,6 +51,7 @@ lefthook.yml # Git hook config (pre-commit)
.prettierignore # Prettier ignore patterns
CODEOWNERS # GitHub code ownership rules
GOVERNANCE.md # Project governance policy
renovate.json # Renovate dependency update config
```

## Tech Stack
Expand All @@ -63,6 +63,7 @@ GOVERNANCE.md # Project governance policy
- **Conventional Commits** (`feat:`, `fix:`, `chore:`, `docs:`, etc.)
- **mise** as the tool manager and task runner
- **lefthook** for git hooks (pre-commit linting and formatting)
- **Renovate** for automated dependency updates (requires Renovate GitHub App; configured via `renovate.json` at repo root)

## Setup

Expand Down Expand Up @@ -250,10 +251,10 @@ Types: `feat`, `fix`, `docs`, `chore`, `refactor`, `test`, `ci`, `perf`

### Files That Affect Other Repos

Community health files, templates, and `.github/dependabot.yml` are inherited by other repositories. Edit carefully —
Community health files and templates are inherited by other repositories. Edit carefully —
breaking changes affect all repos without their own versions.

### Files Local to This Repo

`README.md`, `AGENTS.md`, and workflow definitions. Other repos call workflows explicitly;
`README.md`, `AGENTS.md`, `renovate.json`, and workflow definitions. Other repos call workflows explicitly;
changes here require consumers to update their references if inputs change.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ GitHub uses these as defaults for any public repository that doesn't have its ow
- `CODE_OF_CONDUCT.md`, `SECURITY.md`, `SUPPORT.md`, `GOVERNANCE.md`, `LICENSE.md`
- `.github/ISSUE_TEMPLATE/` — bug reports, feature requests, codebase improvements
- `.github/pull_request_template.md` — default PR template
- `.github/dependabot.yml` — dependency updates with grouping and auto-assign
- `.github/FUNDING.yml`

## Dependency Management

- `renovate.json` — Renovate dependency update config (assignees, grouping, labels, schedule)

## Reusable Workflows

### Release with Changesets
Expand Down
52 changes: 52 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "schedule:weekly"],
"assignees": ["benhigham"],
"labels": ["dependencies"],
"packageRules": [
{
"matchManagers": ["github-actions"],
"addLabels": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "github-actions (minor and patch)"
},
{
"matchManagers": ["npm"],
"addLabels": ["npm"]
},
{
"matchManagers": ["npm"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "npm dev dependencies (minor and patch)"
},
{
"matchManagers": ["npm"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch"],
"groupName": "npm production dependencies (patch)"
},
{
"matchManagers": ["dockerfile", "docker-compose"],
"addLabels": ["docker"]
},
{
"matchManagers": ["terraform"],
"addLabels": ["terraform"]
},
{
"matchManagers": ["devcontainer"],
"addLabels": ["devcontainers"]
},
{
"matchManagers": ["git-submodules"],
"addLabels": ["git-submodules"]
},
{
"matchManagers": ["gomod"],
"addLabels": ["go"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "go dependencies (minor and patch)"
}
]
}
Loading