diff options
author | Natasha Pirogova <galnat@ydb.tech> | 2025-02-22 19:49:16 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-22 16:49:16 +0000 |
commit | 68803c1896c016d643b7b5b8d45b2bc5bb829942 (patch) | |
tree | e49a055dda56e43e14326ab68b03a932160f1fcc | |
parent | 3a2be13ec9da54a0d6fcbdf26a00ba6af2c8a77e (diff) | |
download | ydb-68803c1896c016d643b7b5b8d45b2bc5bb829942.tar.gz |
Fix work with locked branch in update_changelog.py (#14923)
-rw-r--r-- | .github/actions/update_changelog/update_changelog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/update_changelog/update_changelog.py b/.github/actions/update_changelog/update_changelog.py index b8067ced54..1d9250a9a2 100644 --- a/.github/actions/update_changelog/update_changelog.py +++ b/.github/actions/update_changelog/update_changelog.py @@ -204,7 +204,7 @@ if __name__ == "__main__": update_changelog(changelog_path, pr_data) - base_branch_name = f"changelog-for-{base_branch}-{suffix}" + base_branch_name = f"dev-changelog-{base_branch}-{suffix}" branch_name = base_branch_name index = 1 while branch_exists(branch_name): |