-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathCODEOWNERS
More file actions
72 lines (60 loc) · 2.99 KB
/
Copy pathCODEOWNERS
File metadata and controls
72 lines (60 loc) · 2.99 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# CODEOWNERS - Automatic PR review assignment
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owners for everything
* @nvidia/aicr-write
# Data
recipes/** @nvidia/aicr-maintainer
# Recipe evidence (per-source pointer contract, #1347 / #1401).
# Maintainer review is the trust gate for every committed pointer: a
# community/partner contributor opens a PR adding their own pointer under
# recipes/evidence/<recipe>/<source>/ (and an allowlist entry). The
# evidence-pointer-contract CI job enforces that a pointer can only live
# under the <source>/ directory its own verified signer hashes to, so the
# path is not squattable; CODEOWNERS ensures a human maintainer signs off.
# The allowlist is the trust root and is called out explicitly so a change
# to it never rides in on a broader recipes/ approval.
recipes/evidence/** @nvidia/aicr-maintainer
recipes/evidence/allowlist.yaml @nvidia/aicr-maintainer
# Recipe health (ADR-009): the area/recipes owners triage the weekly refresh
pkg/health/** @nvidia/aicr-maintainer
tools/health/** @nvidia/aicr-maintainer
docs/user/recipe-health.md @nvidia/aicr-maintainer
# NodeWright tuning status (ADR-009 sibling): the generated component tuning
# coverage table and its extractor/generator.
pkg/tuning/** @nvidia/aicr-maintainer
tools/tuning/** @nvidia/aicr-maintainer
tools/internal/docgen/** @nvidia/aicr-maintainer
# Recipe-quality surfaces (RQ): the CUJ/CLI coverage matrix generator
tools/coverage/** @nvidia/aicr-maintainer
# UAT day/night broker (#1274, DC1): the reservation-registry parser and
# nightly version-matrix schedule helper that arbitrates reserved GPU time.
# infra/uat/reservations.yaml is intentionally left under the default owner so
# onboarding a reservation stays a low-friction data edit ("new infra extends
# by data edit", #1274); the IDs there are identifiers, not secrets (see the
# NOTE in that file).
pkg/uatbroker/** @nvidia/aicr-maintainer
tools/uat-broker/** @nvidia/aicr-maintainer
# CI/CD and automation
/Makefile @nvidia/aicr-maintainer
/.goreleaser.yaml @nvidia/aicr-maintainer
# Configuration files
/.settings.yaml @nvidia/aicr-maintainer
/.golangci.yaml @nvidia/aicr-maintainer
/.yamllint.yaml @nvidia/aicr-maintainer
# Release configuration
/cliff.toml @nvidia/aicr-maintainer
# GitHub workflows and actions
/.github/** @nvidia/aicr-maintainer