File tree 3 files changed +7
-2
lines changed
airbyte-ci/connectors/pipelines
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -789,7 +789,8 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only
789
789
790
790
| Version | PR | Description |
791
791
| ------- | ---------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
792
- | 4.31.4 | [ #43724 ] ( https://github.com/airbytehq/airbyte/pull/43724 ) | Do not send slack message on connector pre-release. |
792
+ | 4.31.5 | [ #43934 ] ( https://github.com/airbytehq/airbyte/pull/43934 ) | Track deleted files when generating pull-request |
793
+ | 4.31.4 | [ #43724 ] ( https://github.com/airbytehq/airbyte/pull/43724 ) | Do not send slack message on connector pre-release. |
793
794
| 4.31.3 | [ #43426 ] ( https://github.com/airbytehq/airbyte/pull/43426 ) | Ignore archived connectors on connector selection from modified files. |
794
795
| 4.31.2 | [ #43433 ] ( https://github.com/airbytehq/airbyte/pull/43433 ) | Fix 'changed_file' indentation in 'pull-request' command |
795
796
| 4.31.1 | [ #43442 ] ( https://github.com/airbytehq/airbyte/pull/43442 ) | Resolve type check failure in bump version |
Original file line number Diff line number Diff line change @@ -153,6 +153,10 @@ def create_or_update_github_pull_request(
153
153
blob = repo .create_git_blob (content , "base64" )
154
154
changed_file = ChangedFile (path = str (modified_file ), sha = blob .sha )
155
155
changed_files .append (changed_file )
156
+ else :
157
+ logger .info (f"{ modified_file } no longer exists, adding to PR as a deletion" )
158
+ changed_file = ChangedFile (path = str (modified_file ), sha = None )
159
+ changed_files .append (changed_file )
156
160
existing_ref = None
157
161
try :
158
162
existing_ref = repo .get_git_ref (f"heads/{ branch_id } " )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
5
5
[tool .poetry ]
6
6
name = " pipelines"
7
- version = " 4.31.4 "
7
+ version = " 4.31.5 "
8
8
description = " Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
9
9
authors = [
" Airbyte <[email protected] >" ]
10
10
You can’t perform that action at this time.
0 commit comments