Android-Password-Store/.github/workflows/sync_crowdin.yml
renovate[bot] 1e4257aba3
chore(deps): update crowdin/github-action digest to 95d6e89 (#3231)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-23 17:28:21 +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@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 }}