mirror of
https://github.com/documenso/documenso.git
synced 2026-07-11 21:45:18 +10:00
b5e1874ced
The translate:compile CI scripts had a double `--` that would pass a spurious `--` to lingui. CLAUDE.md still referenced the old `with:env --` pattern.
56 lines
1.7 KiB
YAML
56 lines
1.7 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
|
|
environment: Translations
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: ./.github/actions/node-install
|
|
|
|
- name: Compile translations
|
|
id: compile_translations
|
|
run: pnpm run translate: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'
|
|
|
|
env:
|
|
# A classic GitHub Personal Access Token with the 'repo' scope selected (the user should have write access to the repository).
|
|
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
|
|
|
# A numeric ID, found at https://crowdin.com/project/<projectName>/tools/api
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
|
|
# Visit https://crowdin.com/settings#api-key to create this token
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|