Skip to content

Commit

Permalink
airbyte-ci: fix add changelog entry in up-to-date (#47189)
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere authored Oct 21, 2024
1 parent d766015 commit aefcd6e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions airbyte-ci/connectors/pipelines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -851,6 +851,7 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only

| Version | PR | Description |
| ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| 4.41.3 | [#47189](https://github.com/airbytehq/airbyte/pull/47189) | Fix up-to-date which did not export doc to the right path |
| 4.41.2 | [#47185](https://github.com/airbytehq/airbyte/pull/47185) | Fix the bump version command which did not update the changelog. |
| 4.41.1 | [#46914](https://github.com/airbytehq/airbyte/pull/46914) | Upgrade to Dagger 0.13.3 |
| 4.41.0 | [#46914](https://github.com/airbytehq/airbyte/pull/46914) | Rework the connector rollback pipeline for progressive rollout |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ async def run_connector_up_to_date_pipeline(
step_results.append(add_changelog_entry_result)
if add_changelog_entry_result.success:
# File path modified by the changelog entry step are relative to the repo root
exported_modified_files = await add_changelog_entry.export_modified_files(Path("."))
exported_modified_files = await add_changelog_entry.export_modified_files(
context.connector.local_connector_documentation_directory
)
context.logger.info(f"Exported files following the changelog entry: {exported_modified_files}")
all_modified_files.update(exported_modified_files)
final_labels = DEFAULT_PR_LABELS + [AUTO_MERGE_PR_LABEL] if auto_merge else DEFAULT_PR_LABELS
Expand Down
2 changes: 1 addition & 1 deletion airbyte-ci/connectors/pipelines/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pipelines"
version = "4.41.2"
version = "4.41.3"
description = "Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
authors = ["Airbyte <[email protected]>"]

Expand Down

0 comments on commit aefcd6e

Please sign in to comment.