From f414428dfef89a8cf85f1ec171117be50374f184 Mon Sep 17 00:00:00 2001 From: Richard Poelderl Date: Fri, 22 Sep 2023 18:33:37 +0200 Subject: [PATCH] fix: auto-approve crowdin translations uploaded from GitHub (#11490) --- .github/workflows/crowdin.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml index ac043cea02..50df67ba14 100644 --- a/.github/workflows/crowdin.yml +++ b/.github/workflows/crowdin.yml @@ -21,10 +21,18 @@ jobs: - name: crowdin action uses: crowdin/github-action@v1.13.0 with: + # upload sources upload_sources: true + + # upload translations (& auto-approve 'em) + upload_translations_args: '--auto-approve-imported' upload_translations: true - download_translations: true push_translations: true + + # download translations + download_translations: true + + # GH config commit_message: "New Crowdin translations by Github Action" localization_branch_name: main create_pull_request: false