2021-05-29 23:44:26 +03:00
|
|
|
name: Crowdin Download
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2022-07-02 01:05:37 +03:00
|
|
|
# Download translations every hour.
|
|
|
|
# This is not done as part of the build so that builds remain reproducible.
|
|
|
|
- cron: '0 * * * *'
|
2021-05-29 23:44:26 +03:00
|
|
|
# manual trigger
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
download-translations:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-06-17 00:42:18 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-07-02 01:05:37 +03:00
|
|
|
- uses: ./.github/actions/setup
|
2022-06-17 00:42:18 +03:00
|
|
|
- run: yarn i18n:extract
|
2021-05-30 04:06:49 +03:00
|
|
|
|
2022-06-17 00:42:18 +03:00
|
|
|
- name: Download Crowdin translations
|
2022-05-09 19:04:54 +03:00
|
|
|
uses: crowdin/github-action@1.4.9
|
2021-05-29 23:44:26 +03:00
|
|
|
with:
|
|
|
|
upload_sources: false
|
|
|
|
download_translations: true
|
|
|
|
project_id: 458284
|
|
|
|
token: ${{ secrets.CROWDIN_PERSONAL_TOKEN_SECRET }}
|
2021-05-29 23:45:49 +03:00
|
|
|
source: 'src/locales/en-US.po'
|
2021-05-29 23:44:26 +03:00
|
|
|
translation: 'src/locales/%locale%.po'
|
2022-07-01 19:00:20 +03:00
|
|
|
create_pull_request: true
|
|
|
|
pull_request_title: 'chore(i18n): new Crowdin translations'
|
|
|
|
localization_branch_name: l10n_crowdin
|
2022-07-14 18:28:51 +03:00
|
|
|
commit_message: 'chore(i18n): synchronize translations from crowdin [skip ci]'
|
2021-05-29 23:44:26 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|