Skip to content

Commit

Permalink
airbyte-ci: fix migration hint
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed Oct 21, 2023
1 parent cee192a commit fa3d6e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ async def _run(self, *args, **kwargs) -> StepResult:
return self.skip("Connector is not certified, it does not require the use of our base image.")

is_using_base_image = self.context.connector.metadata.get("connectorBuildOptions", {}).get("baseImage") is not None
migration_hint = f"Please run 'airbyte-ci connectors --name={self.context.connector.technical_name} migrate_to_base_image {self.context.pull_request.number}' and commit the changes."
migration_hint = f"Please run 'airbyte-ci connectors --name={self.context.connector.technical_name} migrate_to_base_image <PR NUMBER>' and commit the changes."
if not is_using_base_image:
return StepResult(
self,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ data:
license: MIT
name: Openweather
releaseStage: alpha
supportLevel: community
supportLevel: certified
documentationUrl: https://docs.airbyte.com/integrations/sources/openweather
tags:
- language:lowcode
Expand Down

0 comments on commit fa3d6e0

Please sign in to comment.