Skip to content

Commit

Permalink
add connectors command to add entries to the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-airbyte committed Apr 16, 2024
1 parent c466fb1 commit 8f82f30
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#

"""
Module exposing the format commands.
"""

from __future__ import annotations

import logging
import sys

import asyncclick as click
from pipelines.cli.click_decorators import click_ci_requirements_option, click_ignore_unused_kwargs, click_merge_args_into_context_obj
from pipelines.models.contexts.click_pipeline_context import ClickPipelineContext, pass_pipeline_context


@click.group(name="java-cdk", help="Commands related to the Java CDK")
@click_ci_requirements_option()
@click_merge_args_into_context_obj
@pass_pipeline_context
@click_ignore_unused_kwargs
async def java_cdk(pipeline_context: ClickPipelineContext) -> None:
pass
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ def is_current_process_wrapped_by_dagger_run() -> bool:
"connectors": "pipelines.airbyte_ci.connectors.commands.connectors",
"poetry": "pipelines.airbyte_ci.poetry.commands.poetry",
"format": "pipelines.airbyte_ci.format.commands.format_code",
"java-cdk": "pipelines.airbyte_ci.java_cdk.commands.java_cdk",
"metadata": "pipelines.airbyte_ci.metadata.commands.metadata",
"test": "pipelines.airbyte_ci.test.commands.test",
"update": "pipelines.airbyte_ci.update.commands.update",
Expand Down

0 comments on commit 8f82f30

Please sign in to comment.