-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Expand file tree
/
Copy pathCODEOWNERS
More file actions
68 lines (58 loc) · 3.6 KB
/
CODEOWNERS
File metadata and controls
68 lines (58 loc) · 3.6 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
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
# =============================================================================
# CODEOWNERS - Defines code ownership for pull request reviews
# =============================================================================
# Rules are evaluated top-to-bottom; later rules override earlier ones.
# =============================================================================
# -----------------------------------------------------------------------------
# Protocol
# -----------------------------------------------------------------------------
/docs/understanding-airbyte/airbyte-protocol.md @airbytehq/move-destinations
# -----------------------------------------------------------------------------
# BULK CDK (Kotlin-based modern CDK)
# -----------------------------------------------------------------------------
/airbyte-cdk/bulk/ @airbytehq/dbsources @airbytehq/move-destinations
/airbyte-cdk/bulk/core/extract/ @airbytehq/dbsources
/airbyte-cdk/bulk/core/load/ @airbytehq/move-destinations
/airbyte-cdk/bulk/toolkits/extract-*/ @airbytehq/dbsources
/airbyte-cdk/bulk/toolkits/load-*/ @airbytehq/move-destinations
/airbyte-cdk/bulk/toolkits/legacy-task-*/ @airbytehq/move-destinations
# -----------------------------------------------------------------------------
# JAVA CDK
# -----------------------------------------------------------------------------
/airbyte-cdk/java/airbyte-cdk/ @airbytehq/dbsources @airbytehq/move-destinations
/airbyte-cdk/java/airbyte-cdk/*-sources/ @airbytehq/dbsources
/airbyte-cdk/java/airbyte-cdk/*-destinations/ @airbytehq/move-destinations
/airbyte-cdk/java/airbyte-cdk/typing-deduping/ @airbytehq/move-destinations
# -----------------------------------------------------------------------------
# BUILD INFRASTRUCTURE
# -----------------------------------------------------------------------------
/buildSrc/ @airbytehq/dbsources @airbytehq/move-destinations
# -----------------------------------------------------------------------------
# SOURCE CONNECTORS
# -----------------------------------------------------------------------------
/airbyte-integrations/connectors/source-*/ @airbytehq/dbsources
# -----------------------------------------------------------------------------
# DESTINATION CONNECTORS
# -----------------------------------------------------------------------------
/airbyte-integrations/connectors/destination-*/ @airbytehq/move-destinations
# Destination documentation
/docs/integrations/destinations/ @airbytehq/move-destinations
# -----------------------------------------------------------------------------
# OAUTH
# -----------------------------------------------------------------------------
/oss/airbyte-oauth/src/main/kotlin/io/airbyte/oauth/ @airbytehq/dev-api-sources
# -----------------------------------------------------------------------------
# NO OWNERSHIP - Markdown files
# -----------------------------------------------------------------------------
# Documentation changes don't require team review. These rules override the
# directory ownership rules above. The BREAKING CHANGES section below will
# re-assign ownership for migration docs specifically.
/airbyte-integrations/connectors/source-*/**/*.md
/airbyte-integrations/connectors/destination-*/**/*.md
/docs/**/*.md
# -----------------------------------------------------------------------------
# BREAKING CHANGES
# -----------------------------------------------------------------------------
# This rule ensures that breaking changes to connectors are reviewed by the
# breaking-changes-reviewers team to manage and help message breaking changes.
/docs/integrations/**/*-migrations.md @airbytehq/breaking-change-reviewers