-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCODEOWNERS
More file actions
Validating CODEOWNERS rules...
24 lines (20 loc) · 1.71 KB
/
Copy pathCODEOWNERS
File metadata and controls
24 lines (20 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# CODEOWNERS — llm_bridge
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
#
# The LAST matching pattern wins. Keep broad rules at the top.
# ── Default ──────────────────────────────────────────────────────────────
# Every PR needs at least one maintainer approval.
* @SantanderAI/llm-bridge-maintainers @SantanderAI/core-admins
# ── Public interface contract (change with extra care) ───────────────────
# The base contract and registry define the vendor-neutral API surface.
/src/llm_bridge/base.py @SantanderAI/llm-bridge-maintainers @SantanderAI/core-admins
/src/llm_bridge/registry.py @SantanderAI/llm-bridge-maintainers @SantanderAI/core-admins
# ── CI/CD + GitHub config ────────────────────────────────────────────────
# Changes to workflows, dependabot, issue/PR templates: OSPO sign-off.
/.github/ @SantanderAI/ospo @SantanderAI/core-admins
# ── Legal & security policy ──────────────────────────────────────────────
# These files have organization-wide implications.
LICENSE @SantanderAI/ospo @SantanderAI/core-admins
NOTICE @SantanderAI/ospo @SantanderAI/core-admins
SECURITY.md @SantanderAI/ospo @SantanderAI/core-admins
CODEOWNERS @SantanderAI/ospo @SantanderAI/core-admins