From dee46da43e40e1f6d1e56ee9a1f34c933fcfb896 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Wed, 24 Apr 2024 00:31:53 -0700 Subject: [PATCH] workflow: add automation of syncing translations from Crowdin This will poll translations from Crowdin bi-weekly, test a build to make sure that the site will compile, and then push to the main branch. This saves the effort of manually syncing translations. --- .github/workflows/crowdin-commit.yml | 57 ++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/workflows/crowdin-commit.yml diff --git a/.github/workflows/crowdin-commit.yml b/.github/workflows/crowdin-commit.yml new file mode 100644 index 0000000000..6a52888161 --- /dev/null +++ b/.github/workflows/crowdin-commit.yml @@ -0,0 +1,57 @@ +name: Import translations from Crowdin + +on: + schedule: + - cron: "0 0 1,15 * *" + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + persist-credentials: false + submodules: recursive + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Setup Crowdin CLI + run: | + npm i -g @crowdin/cli + + - name: Pull from Crowdin + env: + CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }} + run: | + crowdin download --branch=master + + - name: Pull origin + run: git pull origin master --ff-only # Pull origin in case a commit has been done while updating + + # This makes sure that the site actually builds before pushing to the repo + - name: Build site + run: npm run docs:build + + - name: Commit changes + run: | + git config user.name 'Faris NyanNyan' + git config user.email 'nnfaris@flashcarts.net' + + git checkout master + git stage . + git commit -m "Automatic translation import" + + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.RUMIHO_TOKEN }} + branch: master