forked from qgis/QGIS-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (56 loc) · 2.24 KB
/
pull_minimized_translations.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
62
63
64
65
66
67
68
69
70
name: Pull translations
# Download partially translated files from Transifex
on:
schedule: #run every 2 weeks, on sunday
- cron: '0 */336 * * 0'
workflow_dispatch:
permissions: # added using https://github.com/step-security/secure-repo
contents: read
jobs:
pull_translation:
permissions:
contents: write # for Git to git push
if: github.repository_owner == 'qgis'
runs-on: ubuntu-latest
env:
# only pull to the branch we translate
TARGET_BRANCH: "release_3.28"
steps:
- name: Harden Runner
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Check out repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
fetch-depth: 1
ref: ${{ env.TARGET_BRANCH }}
- name: Install Transifex client
run: |
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
mv tx LICENSE -t /usr/local/bin/
- shell: bash
name: create .transifexrc file
env:
TRANSIFEX_PASSWORD: ${{ secrets.TRANSIFEX_PASSWORD }}
run: |
sudo echo -e "[https://app.transifex.com]\nrest_hostname = https://rest.api.transifex.com\ntoken = $TRANSIFEX_PASSWORD" > ~/.transifexrc
- name: Download and sanitize files and folders
run: bash ./scripts/minimize_translation.sh
# - name: Show changes
# run: echo `git status`
- name: Load translations if any
run: |
git config --global user.name 'Transifex update'
git config --global user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
if git add locale/* && git commit -m "Loading new translations"; then
git push
else
echo "No new translations"
fi
# - name: Pull source file using transifex client
# uses: transifex/cli-action@bc67c0ab1369ef941f0963d902c45d11688c8bc9 # v1
# with:
# token: ${{ secrets.TRANSIFEX_PASSWORD }}
# args: pull --force --mode onlytranslated -l fr