Skip to content

synchronize-crowdin #17

synchronize-crowdin

synchronize-crowdin #17

name: synchronize-crowdin
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
SynchronizeCrowdin:
if: github.repository == 'Catrobat/Catty'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Synchronize Crowdin Translations
uses: crowdin/github-action@v2
with:
upload_sources: true
upload_translations: false
download_translations: true
config: 'src/crowdin.yml'
create_pull_request: true
pull_request_title: 'New Crowdin Translations'
pull_request_body: 'New Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)'
pull_request_labels: 'translations'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN }}