aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatasha Pirogova <galnat@ydb.tech>2025-02-22 19:49:16 +0300
committerGitHub <noreply@github.com>2025-02-22 16:49:16 +0000
commit68803c1896c016d643b7b5b8d45b2bc5bb829942 (patch)
treee49a055dda56e43e14326ab68b03a932160f1fcc
parent3a2be13ec9da54a0d6fcbdf26a00ba6af2c8a77e (diff)
downloadydb-68803c1896c016d643b7b5b8d45b2bc5bb829942.tar.gz
Fix work with locked branch in update_changelog.py (#14923)
-rw-r--r--.github/actions/update_changelog/update_changelog.py2
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):