Crowdin Translation Sync #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Crowdin Translation Sync | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
crowdin_sync: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Crowdin Sync | |
uses: crowdin/github-action@v1 | |
with: | |
upload_sources: false | |
upload_translations: false | |
download_translations: true | |
localization_branch_name: 'feat/lang/service' | |
create_pull_request: true | |
pull_request_title: 'feat: updated translations from crowdin' | |
pull_request_labels: 'priority: low, status: ready for review, type: translation' | |
pull_request_base_branch_name: 'main' | |
source: 'src/main/generated/assets/galacticraft/lang/en_us.json' | |
translation: 'src/main/resources/assets/galacticraft/lang/%locale_with_underscore%.json' | |
project_id: ${{ secrets.CROWDIN_PROJECT_ID }} | |
token: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |