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
6 changes: 6 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"enabledMcpjsonServers": [
"github-repo-rag"
],
"enableAllProjectMcpServers": true
}
17 changes: 17 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Canonical CODEOWNERS for Maui team repositories.
#
# This is the source of truth. Consuming repos do NOT edit their own
# .github/CODEOWNERS by hand — the `sync-codeowners` reusable workflow copies
# this file into <repo>/.github/CODEOWNERS and opens a PR when it drifts.
#
# GitHub only reads CODEOWNERS from a repo's root, .github/, or docs/ on the
# default branch, so the file must physically exist in each repo; it cannot be
# read from the .maui submodule directly.
#
# See https://docs.github.com/articles/about-code-owners

# CI workflows, deployment config, and the CODEOWNERS file itself.
/.github/ @beyondessential/maui

# Any Python file, anywhere in the repo.
*.py @beyondessential/maui
17 changes: 0 additions & 17 deletions .github/workflows/claude-code-review.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/sync-codeowners.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Sync CODEOWNERS

# Keeps .github/CODEOWNERS in sync with the canonical templates/CODEOWNERS in
# the maui-team repo. See beyondessential/maui-team .github/workflows/README.md.

on:
schedule:
- cron: '0 6 * * 1' # weekly, Monday 06:00 UTC
workflow_dispatch:

jobs:
sync:
uses: beyondessential/maui-team/.github/workflows/sync-codeowners.yml@main
permissions:
contents: write
pull-requests: write
2 changes: 1 addition & 1 deletion .maui
Submodule .maui updated from 8bdb50 to 28cd61
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,12 +252,6 @@ CHANGED_FILES="src/foo.ts src/bar.ts" DELETED_FILES="src/old.ts" \

The GitHub Actions workflow (`.github/workflows/reindex.yml`) runs a full reindex every Monday and can be triggered manually via `workflow_dispatch`.

## Code review

Pull requests are automatically reviewed by Claude via `.github/workflows/claude-code-review.yml`, which delegates to the shared [`maui-team`](https://github.com/beyondessential/maui-team) workflow. Re-trigger a review by commenting `/review` on any PR.

Requires `ANTHROPIC_API_KEY` set as a repository secret.

## File structure

```
Expand All @@ -275,6 +269,5 @@ AGENTS.md # AI agent context (imports from .maui/knowledge/)
.github/
workflows/
reindex.yml # weekly GitHub Actions reindex
claude-code-review.yml # automated PR review via Claude
.env.example
```