Skip to content

Commit

Permalink
Rename remaining lowcode connector manifest files to manifest.yaml (#…
Browse files Browse the repository at this point in the history
…21916)

* Rename remaining lowcode connector manifest files to manifest.yaml

* Updating validation of yaml schema as well
  • Loading branch information
maxi297 authored Jan 26, 2023
1 parent 616e2e1 commit a95cf22
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion airbyte-cdk/python/bin/validate-yaml-schema.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CDK_DIR=$ROOT_DIR/airbyte-cdk/python/
for directory in $CONNECTORS_DIR/source-* ; do
MANIFEST_DIRECTORY=$(basename $directory | tr - _)
SOURCE_NAME=${MANIFEST_DIRECTORY#source_}
if test -f "$directory/source_$SOURCE_NAME/$SOURCE_NAME.yaml"; then
if test -f "$directory/$MANIFEST_DIRECTORY/manifest.yaml"; then
cd $directory

rm -rf .venv
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# Declarative Source
class SourceDelighted(YamlDeclarativeSource):
def __init__(self):
super().__init__(path_to_yaml="delighted.yaml")
super().__init__(path_to_yaml="manifest.yaml")
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# Declarative Source
class SourceTempo(YamlDeclarativeSource):
def __init__(self):
super().__init__(path_to_yaml="tempo.yaml")
super().__init__(path_to_yaml="manifest.yaml")
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# Declarative Source
class SourceZenloop(YamlDeclarativeSource):
def __init__(self):
super().__init__(path_to_yaml="zenloop.yaml")
super().__init__(path_to_yaml="manifest.yaml")

0 comments on commit a95cf22

Please sign in to comment.