ba8e1bf5a3
## Summary Two robustness fixes to `docs-i18n-pull.yaml` so localized docs can't silently drift: 1. **Prune orphan localized files.** The pull only adds/updates files, never deletes — so localized copies of renamed/moved/deleted English pages linger and serve dead URLs (recently ~113 of them). A new `prune-orphan-translations` script (run with `--apply` in the workflow, on real pulls only) removes any `l/<lang>/**` file whose English source no longer exists. 2. **Surface per-language download failures.** The loop previously swallowed failures with `|| echo "Warning..."`, so a language whose Crowdin server-side build fails (e.g. `ja`, failing at 79%) was skipped *silently* and froze indefinitely while every other language updated. We now collect failures, still commit the languages that succeeded, and **fail the run at the end** so a broken language is visible. --------- Co-authored-by: Cursor <cursoragent@cursor.com>
53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
name: 'Push docs to Crowdin'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
push:
|
|
branches: ['main']
|
|
paths:
|
|
- 'packages/twenty-docs/**/*.mdx'
|
|
- '!packages/twenty-docs/l/**'
|
|
- 'packages/twenty-docs/navigation/navigation.template.json'
|
|
- '.github/crowdin-docs.yml'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
|
|
|
jobs:
|
|
push_docs:
|
|
name: Push documentation to Crowdin
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
|
with:
|
|
token: ${{ github.token }}
|
|
ref: ${{ github.ref }}
|
|
|
|
- name: Install dependencies
|
|
uses: ./.github/actions/yarn-install
|
|
|
|
- name: Generate navigation template for Crowdin
|
|
run: yarn docs:generate-navigation-template
|
|
|
|
- name: Upload docs to Crowdin
|
|
uses: crowdin/github-action@8868a33591d21088edfc398968173a3b98d51706 # v2
|
|
with:
|
|
upload_sources: true
|
|
upload_sources_args: '--delete-obsolete'
|
|
upload_translations: false
|
|
download_translations: false
|
|
localization_branch_name: i18n-docs
|
|
base_url: 'https://twenty.api.crowdin.com'
|
|
config: '.github/crowdin-docs.yml'
|
|
env:
|
|
# Docs translations project
|
|
CROWDIN_PROJECT_ID: '2'
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
|
|