forked from localstack/localstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCODEOWNERS
78 lines (63 loc) · 2.17 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
68
69
70
71
72
73
74
75
76
77
78
######################
### CODE OWNERS ###
######################
# CODEOWNERS
/CODEOWNERS @thrau @dominikschubert
# ASF
/localstack/aws/ @thrau
/tests/unit/aws/ @thrau
# left empty (without owner) because the generated APIs belong to the specific service owners
# you can overwrite this for single services afterwards
/localstack/aws/api/
# CLI/plugins
/localstack/cli/ @thrau
/localstack/plugins.py @thrau
/localstack/config.py @thrau
/tests/unit/cli/ @thrau
/tests/unit/services/test_internal.py @thrau
# Container utils
/localstack/utils/container_utils/ @dominikschubert
/localstack/utils/docker_utils.py @dominikschubert
/tests/integration/docker_utils/ @dominikschubert
/tests/unit/test_dockerclient.py @dominikschubert
######################
### SERVICE OWNERS ###
######################
# Cloudformation
/localstack/services/cloudformation/ @dominikschubert
/localstack/utils/cloudformation/ @dominikschubert
/tests/integration/cloudformation/ @dominikschubert
/tests/unit/test_cloudformation.py @dominikschubert
# left empty (without owner) because the models belong to the specific service owners
# you can overwrite this for single services afterwards
/localstack/services/cloudformation/models/
# Lambda
/localstack/services/awslambda/ @dominikschubert
/tests/integration/awslambda/ @dominikschubert
# IAM
/localstack/services/iam/ @dominikschubert
/tests/integration/test_iam.py @dominikschubert
# Stepfunctions
/localstack/services/stepfunctions/ @dominikschubert
/tests/integration/test_stepfunctions.py @dominikschubert
# Secretsmanager
/localstack/services/secretsmanager/ @dominikschubert
/tests/integration/test_secretsmanager.py @dominikschubert
# SSM
/localstack/services/ssm/ @dominikschubert
/tests/integration/test_ssm.py @dominikschubert
# Events / EventBridge
/localstack/services/events/ @dominikschubert
/tests/integration/test_events.py @dominikschubert
# SQS
/localstack/services/sqs/ @thrau
/tests/integration/test_sqs.py @thrau
/tests/unit/test_sqs.py @thrau
# SNS
/localstack/services/sns/ @thrau
/tests/integration/test_sns.py @thrau
/tests/unit/test_sns.py @thrau
# S3
/localstack/services/s3/ @thrau
/tests/integration/test_s3.py @thrau
/tests/unit/test_s3.py @thrau