Android-Password-Store/.github/workflows/sync_crowdin.yml
Harsh Shandilya 71161e20f8
fix: rework Crowdin integration (#3175)
* chore: set up Crowdin configuration

* fix(app): sync strings from Crowdin

Closes #3174

* fix(ci): use crowdin/github-action instead of homebrew setup

* fix(build): remove obsolete Crowdin plugin
2024-08-18 08:10:12 +00:00

37 lines
1.3 KiB
YAML

name: Sync localisations from Crowdin
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
sync-crowdin:
runs-on: ubuntu-latest
steps:
- name: Setup build environment
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
- name: Sync translations to/from Crowdin
id: crowdin
uses: crowdin/github-action@v2
with:
upload_sources: true
upload_translations: false
download_translations: true
localization_branch_name: l10n_crowdin_translations
create_pull_request: true
pull_request_title: 'New Crowdin Translations'
pull_request_body: 'New Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)'
pull_request_base_branch_name: 'develop'
env:
GITHUB_TOKEN: ${{ secrets.PSL_UPDATE_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_LOGIN }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PROJECT_KEY }}
- name: Enable automerge for PR
shell: bash
run: |
gh pr merge --squash --auto "${PR_URL}"
env:
GITHUB_TOKEN: ${{ secrets.PSL_UPDATE_TOKEN }}
PR_URL: ${{ steps.crowdin.outputs.pull-request-url }}