Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: Félix Malfait <felix@twenty.com>
88 lines
2.9 KiB
YAML
88 lines
2.9 KiB
YAML
# Pull down translations from Crowdin every two hours or when triggered manually.
|
|
|
|
name: 'Pull translations'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 */2 * * *' # Every two hours.
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
pull_translations:
|
|
name: Pull translations
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ github.token }}
|
|
ref: ${{ github.head_ref || github.ref_name }}
|
|
|
|
- name: Install dependencies
|
|
uses: ./.github/workflows/actions/yarn-install
|
|
|
|
- name: Build twenty-shared
|
|
run: npx nx build twenty-shared
|
|
|
|
# Strict mode fails if there are missing translations.
|
|
- name: Compile translations
|
|
id: compile_translations
|
|
run: |
|
|
npx nx run twenty-server:lingui:compile --strict
|
|
npx nx run twenty-emails:lingui:compile --strict
|
|
npx nx run twenty-front:lingui:compile --strict
|
|
continue-on-error: true
|
|
|
|
- name: Pull translations from Crowdin
|
|
if: steps.compile_translations.outcome == 'failure'
|
|
uses: crowdin/github-action@v2
|
|
with:
|
|
upload_sources: false
|
|
upload_translations: false
|
|
download_translations: true
|
|
export_only_approved: false
|
|
localization_branch_name: chore/translations
|
|
commit_message: 'chore: add translations'
|
|
pull_request_title: 'chore: add translations'
|
|
base_url: 'https://twenty.api.crowdin.com'
|
|
auto_approve_imported: false
|
|
import_eq_suggestions: false
|
|
download_sources: false
|
|
push_sources: true
|
|
skip_untranslated_strings: false
|
|
skip_untranslated_files: false
|
|
push_translations: true
|
|
create_pull_request: true
|
|
skip_ref_checkout: false
|
|
dryrun_action: false
|
|
github_base_url: 'github.com'
|
|
github_user_name: 'Crowdin Bot'
|
|
github_user_email: 'support+bot@crowdin.com'
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
CROWDIN_PROJECT_ID: '1'
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
|
|
|
- name: Compile and commit updated translations
|
|
if: steps.compile_translations.outcome == 'failure'
|
|
run: |
|
|
git fetch origin chore/translations
|
|
git checkout chore/translations
|
|
npx nx run twenty-server:lingui:compile
|
|
npx nx run twenty-emails:lingui:compile
|
|
npx nx run twenty-front:lingui:compile
|
|
git config --global user.name 'Crowdin Bot'
|
|
git config --global user.email 'support+bot@crowdin.com'
|
|
git add .
|
|
git commit -m "chore: compile translations"
|
|
git push origin chore/translations |