2021-03-24 21:51:10 +00:00
|
|
|
name: Crowdin Action
|
|
|
|
# Controls when the action will run.
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ develop ]
|
|
|
|
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
|
|
jobs:
|
|
|
|
# This workflow contains a single job called "build"
|
|
|
|
synchronize-with-crowdin:
|
|
|
|
# The type of runner that the job will run on
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
|
|
steps:
|
|
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
# Runs the Crowdin action command - https://github.com/crowdin/github-action
|
|
|
|
- name: crowdin action
|
|
|
|
uses: crowdin/github-action@1.1.0
|
|
|
|
with:
|
|
|
|
# Upload sources to Crowdin
|
|
|
|
upload_sources: true
|
|
|
|
# Upload translations to Crowdin, only use true at initial run
|
2021-06-06 22:57:10 +00:00
|
|
|
upload_translations: true
|
2021-03-24 21:51:10 +00:00
|
|
|
# Make pull request of Crowdin translations
|
|
|
|
download_translations: true
|
2021-06-06 22:48:33 +00:00
|
|
|
# Don't download strings which aren't translated
|
|
|
|
skip_untranslated_strings: true
|
2021-03-24 21:51:10 +00:00
|
|
|
# Download translations with pushing to branch
|
|
|
|
push_translations: true
|
|
|
|
# To download translations to the specified version branch
|
|
|
|
localization_branch_name: 'l10n_crowdin_translations'
|
|
|
|
# Create pull request after pushing to branch
|
|
|
|
create_pull_request: true
|
|
|
|
# Configuration file to use
|
|
|
|
config: 'crowdin-develop.yml'
|
|
|
|
# Use true for dryrun to test the run without actually processing anything
|
2021-06-06 22:51:34 +00:00
|
|
|
dryrun_action: false
|
2021-03-24 21:51:10 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|