From 30ad80b73d1fb1c7d78026f3e11a590ce0ebacb4 Mon Sep 17 00:00:00 2001 From: Oleksandr Nemesh Date: Thu, 2 Jan 2025 23:14:23 +0200 Subject: [PATCH] Create crowdin.yml --- .github/workflows/crowdin.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/crowdin.yml diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml new file mode 100644 index 0000000..7ed44a6 --- /dev/null +++ b/.github/workflows/crowdin.yml @@ -0,0 +1,31 @@ +name: Crowdin Action + +on: + schedule: + - cron: '0 * * * *' # Every hour + push: + branches: [ main ] + +jobs: + synchronize-with-crowdin: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: crowdin action + uses: crowdin/github-action@v2 + with: + upload_sources: true + upload_translations: false + download_translations: true + localization_branch_name: crowdin + create_pull_request: true + pull_request_title: 'Update translations' + pull_request_body: '' + pull_request_base_branch_name: 'main' + env: + GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} + CROWDIN_PROJECT_ID: 750545 + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} \ No newline at end of file