Ascension/.github/workflows/crowdin-download.yaml

35 lines
1.0 KiB
YAML
Raw Normal View History

2021-07-29 03:14:29 +02:00
name: Crowdin translation download
on:
2023-07-19 17:41:02 +02:00
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
2021-07-29 03:14:29 +02:00
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
2023-07-19 17:51:55 +02:00
uses: crowdin/github-action@v1
2021-07-29 03:14:29 +02:00
with:
2023-07-19 18:21:06 +02:00
upload_sources: false
2021-07-29 03:14:29 +02:00
upload_translations: false
2023-07-19 19:51:34 +02:00
download_sources: false
2021-07-29 03:14:29 +02:00
download_translations: true
2023-07-19 19:51:34 +02:00
download_translations_args: "--verbose"
2021-07-29 03:14:29 +02:00
localization_branch_name: i18n
create_pull_request: true
2023-07-19 19:51:34 +02:00
commit_message: "New Crowdin translations"
2021-07-29 03:14:29 +02:00
pull_request_title: "New Crowdin translations"
2023-07-19 19:51:34 +02:00
pull_request_base_branch_name: "main"
2021-07-29 03:14:29 +02:00
project_id: ${{ secrets.CROWDIN_PROJECT_ID }}
token: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
2023-07-19 19:51:34 +02:00
source: "i18n/build/source.yaml"
translation: "/i18n/build/%three_letters_code%.%file_extension%"
2021-07-29 03:14:29 +02:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}