aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/sync_crowdin.yml
blob: 9dd613f7f1ec95f2cacbdc26546ccce66bca353c (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 }}