-
Notifications
You must be signed in to change notification settings - Fork 42
/
CODEOWNERS
Validating CODEOWNERS rules...
67 lines (52 loc) · 1.6 KB
/
CODEOWNERS
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
# Code Owners Declaration
# This file defines the code owners for files in this repository
# See documentation here: https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
# Default group of people?
* @awlayton @abalmos @aultac
.gitattributes @aultac
# prettier
.prettierignore @awlayton
.prettierrc.json @awlayton
# VS Code
.vscode @awlayton
*.code-workspace @awlayton
# eslint
**/.eslint* @awlayton
**/eslint.* @awlayton
# TypeScript
**/tsconfig.* @awlayton
# docker
oada/.dockerignore @awlayton
oada/Dockerfile @abalmos @awlayton
docker-compose.yml @abalmos @awlayton
common.yml @abalmos
# Alex made swag based proxy
support/proxy @awlayton
oada/lerna.json @awlayton
oada/libs/lib-kafka @awlayton
oada/libs/pino-debug @awlayton
#oada/libs/oada-lib-arangodb
oada/libs/lib-config @awlayton
# Service authors?
oada/services/auth @abalmos
oada/services/http-handler @awlayton
#oada/services/permissions-handler
#oada/services/rev-graph-update @wang701
#oada/services/shares
oada/services/startup @aultac
oada/services/sync-handler @awlayton
oada/services/users @aultac
oada/services/webhooks @awlayton
oada/services/well-known @awlayton
oada/services/write-handler @awlayton
# Yaguang wrote the tests
#oada/tests @YaguangZhang
# Alex made the release nonsense
release @awlayton
# Helm stuff
charts @awlayton
# Andrew intially created all the files in .github with some additions by Aaron
.github @abalmos
#.github/workflows/validate-codeowners.yml @aaron97neu
.github/workflows/build-and-push-services.yml @abalmos @awlayton
.github/workflows/semgrep-analysis.yml @awlayton