mirror of
https://github.com/DiscordSRV/Ascension.git
synced 2024-11-01 08:39:31 +01:00
28 lines
852 B
YAML
28 lines
852 B
YAML
name: Crowdin translation download
|
|
|
|
on:
|
|
push:
|
|
branches: [dev]
|
|
|
|
jobs:
|
|
synchronize-with-crowdin:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Download translations from Crowdin
|
|
uses: crowdin/github-action@1.1.0
|
|
with:
|
|
upload_translations: false
|
|
download_translations: true
|
|
localization_branch_name: i18n
|
|
create_pull_request: true
|
|
pull_request_title: "New Crowdin translations"
|
|
pull_request_body: ""
|
|
source: "source.yaml"
|
|
translation: "/%original_path%/src/main/resources/translations/%three_letters_code%.yaml"
|
|
project_id: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
token: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|