-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add connectors command to add entries to the changelog
- Loading branch information
1 parent
c466fb1
commit 8f82f30
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/java_cdk/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# | ||
# Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
# |
25 changes: 25 additions & 0 deletions
25
airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/java_cdk/commands.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters