-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCODEOWNERS
More file actions
42 lines (35 loc) · 1.44 KB
/
CODEOWNERS
File metadata and controls
42 lines (35 loc) · 1.44 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
# CODEOWNERS file for CloudZero open source projects
#
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.
# Owners can be @usernames, @org/team-names, or email addresses.
#
# For more information, 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
* @cloudzero/open-source-maintainers
# Python code
*.py @cloudzero/open-source-maintainers
python/ @cloudzero/open-source-maintainers
pyproject.toml @cloudzero/open-source-maintainers
# JavaScript/TypeScript code
*.js @cloudzero/open-source-maintainers
*.ts @cloudzero/open-source-maintainers
*.jsx @cloudzero/open-source-maintainers
*.tsx @cloudzero/open-source-maintainers
javascript/ @cloudzero/open-source-maintainers
package.json @cloudzero/open-source-maintainers
# CI/CD configuration
.github/workflows/ @cloudzero/open-source-maintainers
.github/actions/ @cloudzero/open-source-maintainers
# Documentation
*.md @cloudzero/open-source-maintainers
docs/ @cloudzero/open-source-maintainers
# Docker configuration
Dockerfile @cloudzero/open-source-maintainers
docker-compose*.yml @cloudzero/open-source-maintainers
.dockerignore @cloudzero/open-source-maintainers
# Security and compliance
SECURITY.md @cloudzero/open-source-maintainers
LICENSE @cloudzero/open-source-maintainers
NOTICE @cloudzero/open-source-maintainers