This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
Sync localisations from Crowdin #185
This file contains 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: 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@95d6e895e871c3c7acf0cfb962f296baa41e63c6 # 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' | |
project_id: ${{ secrets.CROWDIN_PROJECT_ID }} | |
token: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.PSL_UPDATE_TOKEN }} | |
- 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 }} |