-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCODEOWNERS
More file actions
37 lines (30 loc) · 1.46 KB
/
CODEOWNERS
File metadata and controls
37 lines (30 loc) · 1.46 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
# CODEOWNERS — default reviewers for pull requests
# Docs: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
#
# Each line defines a file pattern and the GitHub users/teams required to review
# changes to matching files. Later rules take precedence over earlier ones.
# agent workflows
.cursor/skills/ @gerchowl
justfile.worktree @gerchowl
# CI/CD workflows — require maintainer review for any workflow change
.github/workflows/ @c-vigo
.github/actions/ @c-vigo
# Build and release scripts
scripts/build.sh @c-vigo
scripts/prepare-build.sh @c-vigo
scripts/clean.sh @c-vigo
scripts/sync_manifest.py @c-vigo
# Developer tooling scripts
packages/vig-utils/src/vig_utils/gh_issues.py @gerchowl
packages/vig-utils/src/vig_utils/setup_labels.py @gerchowl
packages/vig-utils/src/vig_utils/shell/setup-labels.sh @gerchowl
packages/vig-utils/src/vig_utils/resolve_branch.py @gerchowl
packages/vig-utils/src/vig_utils/shell/resolve-branch.sh @gerchowl
# Dev environment setup
scripts/init.sh @c-vigo
scripts/requirements.yaml @c-vigo
# Security-sensitive configuration
.github/dependabot.yml @c-vigo
.github/CODEOWNERS @c-vigo
SECURITY.md @c-vigo
Containerfile @c-vigo