From 88d220b64943c28c225d666d61bc7a0b8fcfc14d Mon Sep 17 00:00:00 2001 From: selmankoc Date: Fri, 7 Feb 2025 15:36:55 +0300 Subject: [PATCH] Update docstrings in update_versions.py for clarity and consistency --- .github/scripts/update_versions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/update_versions.py b/.github/scripts/update_versions.py index a0c45ea407..93817e3f10 100644 --- a/.github/scripts/update_versions.py +++ b/.github/scripts/update_versions.py @@ -5,7 +5,7 @@ from github import Github def get_latest_release_branch(): - """ GitHub repository'deki tüm `rel-x.x` branch'lerini listeleyerek en büyük sürüme sahip olanı döndürür. """ + """ Lists all `rel-x.x` branches in the GitHub repository and returns the one with the highest version. """ g = Github(os.environ["GITHUB_TOKEN"]) repo = g.get_repo("abpframework/abp") @@ -28,7 +28,7 @@ def get_latest_release_branch(): return latest_branch def get_version_from_common_props(branch): - """ Belirtilen branch'teki `common.props` dosyasından `Version` ve `LeptonXVersion` bilgilerini çeker. """ + """ Fetches the `Version` and `LeptonXVersion` information from the `common.props` file in the specified branch. """ g = Github(os.environ["GITHUB_TOKEN"]) repo = g.get_repo("abpframework/abp")