Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

feat: final words for this version #16

feat: final words for this version

feat: final words for this version #16

Workflow file for this run

name: Crowdin Action
permissions:
pull-requests: write
issues: write
repository-projects: write
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
synchronize-with-crowdin:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Replace api_token in crowdin.yml
run: |
sed -i 's/"api_token": "[^"]*"/"api_token": "${{ secrets.CROWDIN_PERSONAL_TOKEN }}"/' crowdin.yml
- name: crowdin action
uses: crowdin/github-action@v1
with:
upload_sources: true
upload_translations: false
download_translations: false
localization_branch_name: i18n
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_base_branch_name: 'main'
env:
GITHUB_TOKEN: ${{ secrets.PUSH_GITHUB_TOKEN }}
CROWDIN_PROJECT_ID: 662696
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}