aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/crowdin.yml
blob: 6189172c6aefb18d85fb47633a41e2286bf1566a (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
name: Crowdin Action
on:
    schedule:
        -   cron: '0 0 * * *'
    workflow_dispatch: { }
jobs:
    synchronize-with-crowdin:
        runs-on: ubuntu-latest
        permissions:
            pull-requests: write
            contents: write
        steps:
            -   name: Checkout
                uses: actions/checkout@v3
            -   name: Crowdin Action
                uses: crowdin/github-action@v1
                with:
                    upload_sources: true
                    config: crowdin.yml
                    upload_translations: false
                    download_sources: false
                    download_translations: true
                    skip_untranslated_strings: true
                    export_only_approved: true
                    push_translations: true
                    create_pull_request: true
                    pull_request_title: 'New Crowdin Translations'
                    pull_request_base_branch_name: 'master'
                    pull_request_body: 'New Crowdin Translations'
                    localization_branch_name: l10n
                env:
                    GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
                    CROWDIN_PERSONAL_TOKEN: "${{ secrets.CROWDIN_TOKEN }}"