Merge branch 'master' into translate-ja-update-outdated-60349fbc

This commit is contained in:
Sebastián Ramírez 2026-02-04 06:49:23 -08:00 committed by GitHub
commit 7a6cc6be01
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -411,7 +411,8 @@ def make_pr(
print(f"Creating a new branch {branch_name}")
subprocess.run(["git", "checkout", "-b", branch_name], check=True)
else:
print(f"Committing in place on branch {current_branch}")
branch_name = current_branch
print(f"Committing in place on branch {branch_name}")
print("Adding updated files")
git_path = Path("docs")
subprocess.run(["git", "add", str(git_path)], check=True)