This repository has been archived by the owner on May 30, 2024. It is now read-only.
Download translation from Crowdin #6264
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: Download translation from Crowdin | |
on: | |
schedule: | |
- cron: "0 */4 * * *" | |
push: | |
branches: [main] | |
jobs: | |
synchronize-with-crowdin: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- name: crowdin action | |
uses: crowdin/[email protected] | |
with: | |
upload_sources: false | |
upload_translations: false | |
download_translations: true | |
dryrun_action: false | |
crowdin_branch_name: main | |
# This is the name of the git branch that Crowdin will create when opening a pull request. | |
# This branch does NOT need to be manually created. It will be created automatically by the action. | |
localization_branch_name: l10n_crowdin_action | |
create_pull_request: true | |
pull_request_title: "New Crowdin translations" | |
pull_request_body: "New Crowdin pull request with translations" | |
pull_request_labels: "translation update, automated pr" | |
# This is the name of the git branch to with pull request will be created. | |
# If not specified default repository branch will be used. | |
pull_request_base_branch_name: main | |
env: | |
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }} | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |