forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 116
61 lines (50 loc) · 1.46 KB
/
auto_translate.yml
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
name: Add new translation
on:
workflow_dispatch:
push:
branches: ['translate']
concurrency:
group: translation
cancel-in-progress: false
jobs:
add_translation:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
name: 'Add new translation'
steps:
- name: 'Update Branch'
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Installing Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Installing deps
run: |
python -m pip install --upgrade pip
pip install -r ./tools/translator/requirements.txt
- name: Git fetch
run: |
git fetch
- name: Create temporary branch
run: |
git checkout -b translate_tmp ${{ github.sha }}^
- name: Apply PR translation
run: |
git diff ${{ github.sha }}^..${{ github.sha }} | git apply
- name: 'Generate Translation'
run: |
python ./tools/translator/converter.py
git add ./tools/translator/ss220replace.json
git checkout -- .
- name: 'Push Translation'
run: |
git fetch origin translate
git checkout origin/translate
git config --local user.email "[email protected]"
git config --local user.name "ss220bot"
git commit -m "Generate translation file"
git push origin translate:translate