Skip to content

Commit 2bcdc16

Browse files
authored
Airbyte CI: rename incorrectly named pipelines (#36722)
1 parent 28dd34d commit 2bcdc16

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

airbyte-ci/connectors/pipelines/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,7 @@ E.G.: running Poe tasks on the modified internal packages of the current branch:
649649

650650
| Version | PR | Description |
651651
| ------- | ---------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
652+
| 4.6.5 | [#36722](https://github.com/airbytehq/airbyte/pull/36527) | Fix incorrect pipeline names |
652653
| 4.6.4 | [#36480](https://github.com/airbytehq/airbyte/pull/36480) | Burst the Gradle Task cache if a new CDK version was released |
653654
| 4.6.3 | [#36527](https://github.com/airbytehq/airbyte/pull/36527) | Handle extras as well as groups in `airbyte ci test` [poetry packages] |
654655
| 4.6.2 | [#36220](https://github.com/airbytehq/airbyte/pull/36220) | Allow using `migrate-to-base-image` without PULL_REQUEST_NUMBER |

airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/bump_version/commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async def bump_version(
2424

2525
connectors_contexts = [
2626
ConnectorContext(
27-
pipeline_name=f"Upgrade base image versions of connector {connector.technical_name}",
27+
pipeline_name=f"Bump version of connector {connector.technical_name}",
2828
connector=connector,
2929
is_local=ctx.obj["is_local"],
3030
git_branch=ctx.obj["git_branch"],

airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/bump_version/pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ async def _run(self) -> StepResult:
8282

8383
class BumpDockerImageTagInMetadata(Step):
8484
context: ConnectorContext
85-
title = "Upgrade the dockerImageTag to the latest version in metadata.yaml"
85+
title = "Upgrade the dockerImageTag to the new version in metadata.yaml"
8686

8787
def __init__(
8888
self,

airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/connectors/migrate_to_base_image/commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ async def migrate_to_base_image(
3030

3131
connectors_contexts = [
3232
ConnectorContext(
33-
pipeline_name=f"Upgrade base image versions of connector {connector.technical_name}",
33+
pipeline_name=f"Upgrade connector {connector.technical_name} to use our base image",
3434
connector=connector,
3535
is_local=ctx.obj["is_local"],
3636
git_branch=ctx.obj["git_branch"],

airbyte-ci/connectors/pipelines/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pipelines"
7-
version = "4.6.4"
7+
version = "4.6.5"
88
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
99
authors = ["Airbyte <[email protected]>"]
1010

0 commit comments

Comments
 (0)