From 190dfa8885bf213edd927ea516e314eef6c1dfcd Mon Sep 17 00:00:00 2001 From: Kevin Song Date: Fri, 13 May 2022 16:23:01 -0500 Subject: [PATCH] ci: Add daily Crowdin Pretranslation trigger (#3983) --- .github/workflows/crowdin-pretranslate.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/crowdin-pretranslate.yml diff --git a/.github/workflows/crowdin-pretranslate.yml b/.github/workflows/crowdin-pretranslate.yml new file mode 100644 index 00000000..2ede2d60 --- /dev/null +++ b/.github/workflows/crowdin-pretranslate.yml @@ -0,0 +1,15 @@ +# Run pre-translate with translation memory, all files/langs, at midnight daily. +name: Crowdin Updates +on: + schedule: + - cron: '0 0 * * *' + +jobs: + trigger_crowdin_tm: + name: Crowdin Translation Memory Trigger + runs-on: ubuntu-latest + steps: + - uses: starship/crowdin-pretranslate-action@v0.1.0 + with: + project_id: 372655 + api_key: ${{ secrets.CROWDIN_API_KEY }}