Skip to content

Crowdin pull and merge #45

Crowdin pull and merge

Crowdin pull and merge #45

Workflow file for this run

name: Crowdin pull to GitHub
on:
schedule:
- cron: "0 */12 * * *" # every 12 hours
workflow_dispatch:
jobs:
pull:
name: Pull translations from Crowdin
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout dev
uses: actions/checkout@v5
with:
ref: dev
fetch-depth: 0
clean: true
- name: Pull strings from Crowdin
uses: crowdin/github-action@v2
with:
config: crowdin.yml
upload_sources: false
download_translations: true
skip_ref_checkout: true
localization_branch_name: crowdin
create_pull_request: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
- name: Push crowdin branch
run: |
git checkout -B crowdin
git push --force origin crowdin