From 69b181ee97aefbac2cb7367ff365ec74962afc30 Mon Sep 17 00:00:00 2001 From: "Nicholas Carrigan (he/him)" Date: Wed, 20 Jan 2021 22:00:16 -0800 Subject: [PATCH] fix: disable automatic PR creation (#40753) Temporarily disables the automatic PR creation on Crowdin Download while we determine the best approach for this. PRs created by the action itself cannot trigger workflows, which prevents our CI from running. As such, this is currently not a viable approach. Signed-off-by: nhcarrigan --- .github/workflows/crowdin-i18n-download.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/crowdin-i18n-download.yml b/.github/workflows/crowdin-i18n-download.yml index b4f353b21c..3ede980873 100644 --- a/.github/workflows/crowdin-i18n-download.yml +++ b/.github/workflows/crowdin-i18n-download.yml @@ -3,7 +3,7 @@ on: workflow_dispatch: jobs: - + i18n-download-curriculum-translations: name: Learn runs-on: ubuntu-18.04 @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout Source Files uses: actions/checkout@v2 - + ##### Chinese Download ##### - name: Crowdin Download for Chinese Translations uses: crowdin/github-action@master @@ -28,12 +28,12 @@ jobs: download_translations: true skip_untranslated_files: true export_only_approved: true - + commit_message: 'chore(i8n,learn): processed chinese translations' - + # pull-request localization_branch_name: i18n-sync-learn-processed-chinese-translations - create_pull_request: true + create_pull_request: false pull_request_title: 'chore(i18n,learn): Processed chinese translations from crowdin' pull_request_body: '' pull_request_labels: 'scope: i18n, scope: learn, crowdin-sync, language: Chinese'