Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork8
72 lines (59 loc) · 2.3 KB
/
transifex-pull.yml
File metadata and controls
72 lines (59 loc) · 2.3 KB
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
name:Pull Translations from Transifex
on:
schedule:
-cron:'0 * * * *'
workflow_dispatch:
permissions:
contents:write
jobs:
update-translation:
runs-on:ubuntu-latest
strategy:
fail-fast:false
matrix:
version:[ '3.14' ]
steps:
-uses:styfle/cancel-workflow-action@main
with:
access_token:${{ secrets.GITHUB_TOKEN }}
-uses:actions/setup-python@master
with:
python-version:3
-name:Install Dependencies
run:|
sudo apt-get install -y gettext
pip install requests cogapp polib transifex-python sphinx-intl blurb six
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
curl -O https://raw.githubusercontent.com/python-docs-translations/transifex-automations/master/sample-workflows/transifex-util.py
chmod +x transifex-util.py
working-directory:/usr/local/bin
-uses:actions/checkout@master
with:
ref:${{ matrix.version }}
fetch-depth:0
-run:transifex-util.py recreate_tx_config --language hu --project-slug python-newest --version ${{ matrix.version }}
env:
TX_TOKEN:${{ secrets.TX_TOKEN }}
-run:transifex-util.py fetch --language hu --project-slug python-newest --version ${{ matrix.version }}
env:
TX_TOKEN:${{ secrets.TX_TOKEN }}
-run:transifex-util.py delete_obsolete_files --language hu --project-slug python-newest --version ${{ matrix.version }}
-name:Set up Git
run:|
git config --local user.email github-actions@github.com
git config --local user.name "GitHub Action's update-translation job"
-name:Filter files
run:|
! git diff -I'^"POT-Creation-Date: ' \
-I'^"Language-Team: ' \
-I'^# ' -I'^"Last-Translator: ' \
--exit-code \
&& echo "SIGNIFICANT_CHANGES=1" >> $GITHUB_ENV || exit 0
-run:git add .
-run:git commit -m 'Update translation from Transifex'
if:env.SIGNIFICANT_CHANGES
-uses:ad-m/github-push-action@master
if:env.SIGNIFICANT_CHANGES
with:
branch:${{ matrix.version }}
github_token:${{ secrets.GITHUB_TOKEN }}