Crowdin Sync #1
This file contains hidden or 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: Crowdin Sync | |
| on: | |
| workflow_dispatch: | |
| inputs: {} | |
| schedule: | |
| - cron: '0 0 * * 5' | |
| jobs: | |
| crowdin-sync: | |
| name: Autosync | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - app_name: browser | |
| crowdin_project_id: "268134" | |
| - app_name: desktop | |
| crowdin_project_id: "299360" | |
| - app_name: web | |
| crowdin_project_id: "308189" | |
| steps: | |
| - name: Log in to Azure | |
| uses: bitwarden/gh-actions/azure-login@main | |
| with: | |
| subscription_id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
| tenant_id: ${{ secrets.AZURE_TENANT_ID }} | |
| client_id: ${{ secrets.AZURE_CLIENT_ID }} | |
| - name: Get Azure Key Vault secrets | |
| id: get-kv-secrets | |
| uses: bitwarden/gh-actions/get-keyvault-secrets@main | |
| with: | |
| keyvault: gh-org-bitwarden | |
| secrets: "BW-GHAPP-ID,BW-GHAPP-KEY" | |
| - name: Retrieve secrets | |
| id: retrieve-secrets | |
| uses: bitwarden/gh-actions/get-keyvault-secrets@main | |
| with: | |
| keyvault: "bitwarden-ci" | |
| secrets: "crowdin-api-token, github-gpg-private-key, github-gpg-private-key-passphrase" | |
| - name: Log out from Azure | |
| uses: bitwarden/gh-actions/azure-logout@main | |
| - name: Generate GH App token | |
| uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1 | |
| id: app-token | |
| with: | |
| app-id: ${{ steps.get-kv-secrets.outputs.BW-GHAPP-ID }} | |
| private-key: ${{ steps.get-kv-secrets.outputs.BW-GHAPP-KEY }} | |
| permission-contents: write # for creating, committing to, and pushing new branches | |
| permission-pull-requests: write # for generating pull requests | |
| - name: Checkout repo | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| token: ${{ steps.app-token.outputs.token }} | |
| persist-credentials: false | |
| - name: Download translations | |
| uses: bitwarden/gh-actions/crowdin@main | |
| env: | |
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | |
| CROWDIN_API_TOKEN: ${{ steps.retrieve-secrets.outputs.crowdin-api-token }} | |
| CROWDIN_PROJECT_ID: ${{ matrix.crowdin_project_id }} | |
| with: | |
| config: crowdin.yml | |
| crowdin_branch_name: main | |
| upload_sources: false | |
| upload_translations: false | |
| download_translations: true | |
| github_user_name: "bitwarden-devops-bot" | |
| github_user_email: "106330231+bitwarden-devops-bot@users.noreply.github.com" | |
| commit_message: "Autosync the updated translations" | |
| localization_branch_name: crowdin-auto-sync-${{ matrix.app_name }} | |
| create_pull_request: true | |
| pull_request_title: "Autosync Crowdin Translations for ${{ matrix.app_name }}" | |
| pull_request_body: "Autosync the updated translations" | |
| working_directory: apps/${{ matrix.app_name }} | |
| gpg_private_key: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key }} | |
| gpg_passphrase: ${{ steps.retrieve-secrets.outputs.github-gpg-private-key-passphrase }} |