-
-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathCODEOWNERS
More file actions
33 lines (26 loc) · 1.04 KB
/
CODEOWNERS
File metadata and controls
33 lines (26 loc) · 1.04 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
# CODEOWNERS for immich-go
# This file defines code ownership and required reviewers for specific paths.
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# Default owners for everything in the repo
* @simulot
# GitHub Actions Workflows - CRITICAL SECURITY
# Changes to workflow files must be reviewed by maintainers to prevent
# malicious code from accessing secrets or compromising the CI/CD pipeline
/.github/workflows/* @simulot
# CI/CD Configuration Files
/.github/CODEOWNERS @simulot
/.github/*.yml @simulot
/.github/*.md @simulot
# Security-sensitive files
/go.mod @simulot
/go.sum @simulot
# Release management
/scripts/publish-prerelease.sh @simulot
/scripts/generate-release-notes.sh @simulot
/scripts/check-immich-api.sh @simulot
# Documentation - maintainers review for technical accuracy
/docs/* @simulot
/README.md @simulot
/CONTRIBUTING.md @simulot
# E2E test infrastructure (contains server setup)
/internal/e2e/testdata/immich-server/* @simulot