Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove connector ops team #34867

Merged
merged 7 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# CDK and Connector Acceptance Tests
/airbyte-cdk/python @airbytehq/connector-extensibility
/airbyte-integrations/connector-templates/ @airbytehq/connector-extensibility
/airbyte-integrations/bases/connector-acceptance-test/ @airbytehq/connector-operations @lazebnyi @oustynova
/airbyte-integrations/bases/connector-acceptance-test/ @airbytehq/connector-extensibility @lazebnyi @oustynova

# Protocol related items
/docs/understanding-airbyte/airbyte-protocol.md @airbytehq/protocol-reviewers
Expand Down Expand Up @@ -62,7 +62,7 @@ airbyte-cdk/java/airbyte-cdk/typing-deduping/ @airbytehq/destinations
/airbyte-integrations/connectors/destination-tidb/ @airbytehq/destinations

# Build customization file change
/airbyte-integrations/connectors/**/build_customization.py @airbytehq/connector-operations
/airbyte-integrations/connectors/**/build_customization.py @airbytehq/connector-extensibility

# airbyte-ci
/airbyte-ci @airbytehq/connector-operations
/airbyte-ci @airbytehq/connector-extensibility
2 changes: 1 addition & 1 deletion .github/workflows/publish-command.yml
evantahler marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
The connector publication happens on merge to the master branch.<br>
Please use /legacy-publish if you need to publish normalization images.<br>
Please join the #connector-publish-updates slack channel to track ongoing publish pipelines.<br>
Please reach out to the @dev-connector-ops team if you need support in publishing a connector.
Please reach out to the @dev-extensibility team if you need support in publishing a connector.
evantahler marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import yaml
from connector_ops import utils

BACKWARD_COMPATIBILITY_REVIEWERS = {"connector-operations", "connector-extensibility"}
TEST_STRICTNESS_LEVEL_REVIEWERS = {"connector-operations"}
BYPASS_REASON_REVIEWERS = {"connector-operations"}
BACKWARD_COMPATIBILITY_REVIEWERS = {"connector-extensibility"}
TEST_STRICTNESS_LEVEL_REVIEWERS = {"connector-extensibility"}
BYPASS_REASON_REVIEWERS = {"connector-extensibility"}
STRATEGIC_PYTHON_CONNECTOR_REVIEWERS = {"gl-python"}
BREAKING_CHANGE_REVIEWERS = {"breaking-change-reviewers"}
REVIEW_REQUIREMENTS_FILE_PATH = ".github/connector_org_review_requirements.yaml"
Expand Down
evantahler marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,5 @@ def create_slack_message(self) -> str:
assert self.report is not None, "Report should be set when state is successful"
message += f"⏲️ Run duration: {format_duration(self.report.run_duration)}\n"
if self.state is ContextState.FAILURE:
message += "\ncc. <!subteam^S0407GYHW4E>" # @dev-connector-ops
message += "\ncc. <!subteam^dev-connector-extensibility>"
evantahler marked this conversation as resolved.
Show resolved Hide resolved
return message
Loading