From 425ff5a9734f26fea5c6686c5caead5e3e2b0201 Mon Sep 17 00:00:00 2001 From: Ushie Date: Sat, 30 Mar 2024 05:15:07 +0300 Subject: [PATCH] ci: Add workflow to sync Crowdin translations (#2953) --- .github/workflows/sync_crowdin.yml | 39 ++++++++++++++++++++++++++++++ crowdin.yml | 8 ++++++ 2 files changed, 47 insertions(+) create mode 100644 .github/workflows/sync_crowdin.yml create mode 100644 crowdin.yml diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml new file mode 100644 index 00000000..e0d0912b --- /dev/null +++ b/.github/workflows/sync_crowdin.yml @@ -0,0 +1,39 @@ +name: Sync Crowdin + +on: + workflow_dispatch: + schedule: + - cron: 0 * 1 * * + push: + paths: + - /src/main/resources/addresources/values/strings.xml + +jobs: + sync: + name: Sync translations + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Sync translations + uses: crowdin/github-action@v1 + with: + config: crowdin.yml + upload_sources: true + upload_translations: false + download_translations: true + localization_branch_name: feat/translations + create_pull_request: true + pull_request_title: "chore: Sync translations" + pull_request_body: "Sync translations from [crowdin.com/project/revanced](https://crowdin.com/project/revanced)" + pull_request_base_branch_name: "dev" + commit_message: "chore: Sync translations" + github_user_name: revanced-bot + github_user_email: github@revanced.app + env: + GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} \ No newline at end of file diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 00000000..4ac3cb98 --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,8 @@ +project_id_env: "CROWDIN_PROJECT_ID" +api_token_env: "CROWDIN_PERSONAL_TOKEN" + +preserve_hierarchy: false +files: + - source: src/main/resources/addresources/values/strings.xml + translation: src/main/resources/addresources/values-%android_code%/strings.xml + skip_untranslated_strings: true