93659658a7
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
37 lines
1.3 KiB
YAML
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@cf0ccf9a71f614e66e011d461ea11e5dbabb93ca # 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 }}
|