2021-07-29 03:14:29 +02:00
|
|
|
name: Crowdin translation download
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [dev]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
synchronize-with-crowdin:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-04-20 09:22:05 +02:00
|
|
|
uses: actions/checkout@v3
|
2021-07-29 03:14:29 +02:00
|
|
|
- name: Download translations from Crowdin
|
2022-04-20 09:22:05 +02:00
|
|
|
uses: crowdin/github-action@1.4.8
|
2021-07-29 03:14:29 +02:00
|
|
|
with:
|
|
|
|
upload_translations: false
|
|
|
|
download_translations: true
|
|
|
|
localization_branch_name: i18n
|
|
|
|
create_pull_request: true
|
|
|
|
pull_request_title: "New Crowdin translations"
|
|
|
|
pull_request_body: ""
|
2021-12-24 00:21:14 +01:00
|
|
|
source: "source.yaml"
|
|
|
|
translation: "/%original_path%/src/main/resources/translations/%three_letters_code%.yaml"
|
2021-07-29 03:14:29 +02:00
|
|
|
project_id: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
|
|
token: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|