FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
packaging.python.org/.github/workflows/translation.yml at main · larsoner/packaging.python.org · GitHub
larsoner
/
packaging.python.org
Public
forked from
pypa/packaging.python.org
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
packaging.python.org
/
.github
/
workflows
/
translation.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
77 lines (63 loc) · 1.88 KB
Breadcrumbs
packaging.python.org
/
.github
/
workflows
/
translation.yml
Copy path
File metadata and controls
77 lines (63 loc) · 1.88 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name
:
Translation
on
:
workflow_run
:
workflows
:
-
Test
branches
:
-
main
types
:
-
completed
env
:
I18N_BRANCH
:
translation/source
jobs
:
build
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Grab the repo src
uses
:
actions/checkout@v3
with
:
fetch-depth
:
0
#
To reach the common commit
-
name
:
Set up git user as [bot]
#
Refs:
#
* https://github.community/t/github-actions-bot-email-address/17204/6
#
* https://github.com/actions/checkout/issues/13#issuecomment-724415212
uses
:
fregante/setup-git-user@v1.1.0
-
name
:
Switch to the translation source branch
run
:
|
sh -x
git fetch origin \
'+refs/heads/${{
env.I18N_BRANCH
}}:refs/remotes/origin/${{
env.I18N_BRANCH
}}'
git checkout -B '${{ env.I18N_BRANCH }}' \
'origin/${{ env.I18N_BRANCH }}'
-
name
:
>-
Merge '${{ github.event.repository.default_branch }}'
to '${{ env.I18N_BRANCH }}'
run: |
sh -x
git merge '${{ github.event.repository.default_branch }}'
-
name
:
Set up Python
uses
:
actions/setup-python@v4
with
:
python-version
:
>-
3.10
-
name
:
Install Python tooling
run
:
python -m pip install --upgrade nox virtualenv
-
name
:
Generate a fresh POT file out of RST documents
run
:
python -m nox -s translation
-
name
:
Commit the POT file to Git
run
:
|
git_hash=$(git rev-parse --short "${GITHUB_SHA}")
git add --force locales/messages.pot
git commit \
-m "Update messages.pot as of version ${git_hash}" \
locales/messages.pot
-
name
:
>-
Push the updated POT file back to '${{ env.I18N_BRANCH }}'
branch on GitHub
if: always()
run: |
git push --atomic origin 'HEAD:${{ env.I18N_BRANCH }}'
Back
|
FazBrowse Home
|
New Git URL