From 37613badfcb02c79ef412be94807fd8870b9d4c4 Mon Sep 17 00:00:00 2001 From: alafanechere Date: Tue, 7 May 2024 13:27:12 +0200 Subject: [PATCH] airbyte-ci: add auto_merge as an internal package --- airbyte-ci/connectors/pipelines/README.md | 1 + .../connectors/pipelines/pipelines/airbyte_ci/test/__init__.py | 1 + airbyte-ci/connectors/pipelines/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/airbyte-ci/connectors/pipelines/README.md b/airbyte-ci/connectors/pipelines/README.md index 426dfad1e787..03dcabbbcef2 100644 --- a/airbyte-ci/connectors/pipelines/README.md +++ b/airbyte-ci/connectors/pipelines/README.md @@ -745,6 +745,7 @@ E.G.: running Poe tasks on the modified internal packages of the current branch: | Version | PR | Description | |---------| ---------------------------------------------------------- |------------------------------------------------------------------------------------------------------------------------------| +| 4.12.7 | [#TBD](https://github.com/airbytehq/airbyte/pull/TBD) | Add `auto_merge` as an internal package to test. | | 4.12.6 | [#36497](https://github.com/airbytehq/airbyte/pull/36497) | Add airbyte-cdk to list of poetry packages for testing | | 4.12.5 | [#37785](https://github.com/airbytehq/airbyte/pull/37785) | Set the `--yes-auto-update` flag to `True` by default. | | 4.12.4 | [#37786](https://github.com/airbytehq/airbyte/pull/37786) | (fixed 4.12.2): Do not upload dagger log to GCP when no credentials are available. | diff --git a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/test/__init__.py b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/test/__init__.py index 2f61313261b6..cfa00bc231ed 100644 --- a/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/test/__init__.py +++ b/airbyte-ci/connectors/pipelines/pipelines/airbyte_ci/test/__init__.py @@ -5,6 +5,7 @@ from pathlib import Path INTERNAL_POETRY_PACKAGES = [ + "airbyte-ci/connectors/auto_merge", "airbyte-ci/connectors/pipelines", "airbyte-ci/connectors/base_images", "airbyte-ci/connectors/common_utils", diff --git a/airbyte-ci/connectors/pipelines/pyproject.toml b/airbyte-ci/connectors/pipelines/pyproject.toml index 7eee9873d55f..a500d6f94e45 100644 --- a/airbyte-ci/connectors/pipelines/pyproject.toml +++ b/airbyte-ci/connectors/pipelines/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pipelines" -version = "4.12.6" +version = "4.12.7" description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines" authors = ["Airbyte "]