Pull App Translations #570
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 App Translations | |
on: | |
schedule: | |
- cron: "0 */12 * * *" | |
workflow_dispatch: | |
jobs: | |
pull_translations: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Max fetch depth (full history of files) | |
- name: Install transifex client | |
run: | | |
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash | |
- name: Pull translations | |
env: | |
TX_TOKEN: ${{ secrets.TX_TOKEN }} | |
run: | | |
./tx pull --all --use-git-timestamps --minimum-perc 100 | |
# Not supported | |
rm -f ./locale/zh*.json | |
rm -f ./locale/ja.json | |
rm -f ./locale/ko.json | |
# Not enough translation percentage of the game itself | |
rm -f ./locale/tr.json | |
rm -f ./locale/vi.json | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
title: Update translation file(s) of the app | |
commit-message: Update translation file(s) of the app | |
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | |
add-paths: locale/* | |
delete-branch: true |