From 302a7be52ec141ed20489dfdfac50c9e1a4795cc Mon Sep 17 00:00:00 2001 From: Ushie Date: Tue, 2 Apr 2024 02:34:22 +0300 Subject: [PATCH] ci: Push strings to Crowdin on string changes (#2979) Co-authored-by: oSumAtrIX --- .github/workflows/pull_strings.yml | 34 ++++++++++++++++++++++++++ .github/workflows/push_strings.yml | 27 +++++++++++++++++++++ .github/workflows/sync_crowdin.yml | 39 ------------------------------ 3 files changed, 61 insertions(+), 39 deletions(-) create mode 100644 .github/workflows/pull_strings.yml create mode 100644 .github/workflows/push_strings.yml delete mode 100644 .github/workflows/sync_crowdin.yml diff --git a/.github/workflows/pull_strings.yml b/.github/workflows/pull_strings.yml new file mode 100644 index 00000000..8202912d --- /dev/null +++ b/.github/workflows/pull_strings.yml @@ -0,0 +1,34 @@ +name: Pull strings + +on: + workflow_dispatch: + schedule: + - cron: 0 * 1 * * + +jobs: + pull: + name: Pull strings + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Pull strings + uses: crowdin/github-action@v1 + with: + config: crowdin.yml + 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 }} diff --git a/.github/workflows/push_strings.yml b/.github/workflows/push_strings.yml new file mode 100644 index 00000000..ca238da1 --- /dev/null +++ b/.github/workflows/push_strings.yml @@ -0,0 +1,27 @@ +name: Push strings + +on: + workflow_dispatch: + push: + paths: + - /src/main/resources/addresources/values/strings.xml + +jobs: + push: + name: Push strings + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Push strings + uses: crowdin/github-action@v1 + with: + config: crowdin.yml + upload_sources: true + env: + GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml deleted file mode 100644 index d0aaf3cb..00000000 --- a/.github/workflows/sync_crowdin.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Sync Crowdin - -on: - workflow_dispatch: - schedule: - - cron: 0 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 }}