Pull translations #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.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 'tx-update@users.noreply.github.com' | |
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 |