Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit555f023

Browse files
committed
Update merge.py and Update Doc action
1 parent78a384d commit555f023

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

‎.github/workflows/update_doc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ jobs:
2525
-name:Run merge.py
2626
run:python merge.py ${GITHUB_REF##*/}
2727

28+
-name:Commit changes
29+
run:|
30+
git config --local user.email "github-actions[bot]@users.noreply.github.com"
31+
git config --local user.name "github-actions[bot]"
32+
git commit -m "Get changes from CPython Doc for ${{ github.ref_name }}"
33+
2834
-name:Create Pull Request
2935
uses:peter-evans/create-pull-request@v4.2.3
3036
with:

‎merge.py

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
"""Tool to merge cpython pot files to python-docs-tr po files for a
22
given branch.
3+
4+
A CPython clone present in the venv/ directory is required if the --cpython_repo is not specified.
5+
6+
This script is run automatically by the GitHub Actions workflow every first day of the month.
37
"""
48

59
importre
610
importshutil
7-
frompathlibimportPath
811
importargparse
912
importsubprocess
13+
frompathlibimportPath
1014
fromsubprocessimportPIPE
1115
fromtqdmimporttqdm
1216

@@ -91,6 +95,23 @@ def update_makefile(cpython_repo: Path) -> None:
9195
run("git","add","Makefile")
9296

9397

98+
defgit_add_relevant_files():
99+
"""Add only files with relevant modifications.
100+
101+
This only add files with actual modifications, not just metadata
102+
modifications, to avoid noise in history.
103+
"""
104+
modified_files=run("git","ls-files","-m",stdout=PIPE).stdout.split("\n")
105+
modified_po_files= [lineforlineinmodified_filesifline.endswith(".po")]
106+
forfileinmodified_po_files:
107+
diff=run("git","diff","-U0",file,stdout=PIPE).stdout
108+
iflen(diff.split("\n"))>8:
109+
run("git","add",file)
110+
else:
111+
run("git","checkout","--",file)
112+
run("rm","-f","whatsnew/changelog.po")# We don't translate this file.
113+
114+
94115
defmain():
95116
args=parse_args()
96117
setup_repo(args.cpython_repo,args.branch)
@@ -106,8 +127,9 @@ def main():
106127
remove_old_files(downstream-upstream)
107128
clean_paths((upstream-downstream)| (upstream&downstream))
108129
shutil.rmtree(pot_path)
109-
run("powrap","-m")
130+
run("powrap","*.po","*/*.po")
110131
update_makefile(args.cpython_repo)
132+
git_add_relevant_files()
111133

112134

113135
if__name__=="__main__":

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp