From eb2567787e4d5d8c29c445317b1605b9905a969b Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Wed, 24 Apr 2024 00:23:30 -0700 Subject: [PATCH 1/2] workflow: add automation of uploading source text to Crowdin This will push to Crowdin if a push to main branch was successful. This allows automation of syncing source text, making it less of a hassle to synchronize all translations. --- .github/workflows/crowdin-upload.yml | 42 ++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/crowdin-upload.yml diff --git a/.github/workflows/crowdin-upload.yml b/.github/workflows/crowdin-upload.yml new file mode 100644 index 0000000000000..c66b011422f31 --- /dev/null +++ b/.github/workflows/crowdin-upload.yml @@ -0,0 +1,42 @@ +name: Upload source files to Crowdin + +on: + push: + branches: [ master ] + paths: + - 'docs/**.md' + - 'docs/_include/**.md' + - 'docs/.vitepress/i18n/strings/en_US.json' + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + persist-credentials: false + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + # This makes sure that the site actually builds before pushing to Crowdin + - name: Build site + run: npm run docs:build + + - name: Push to Crowdin + uses: crowdin/github-action@v2 + with: + upload_sources: true + upload_translations: false + download_translations: false + crowdin_branch_name: ${{ env.BRANCH_NAME }} + env: + CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }} From df2481f52a9ae550ea913e9d3c922b8663289f14 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Wed, 24 Apr 2024 00:31:53 -0700 Subject: [PATCH 2/2] 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 | 55 ++++++++++++++++++++++++++++ 1 file changed, 55 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 0000000000000..27703e0902a2d --- /dev/null +++ b/.github/workflows/crowdin-commit.yml @@ -0,0 +1,55 @@ +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 + run: | + CROWDIN_TOKEN=${{ secrets.CROWDIN_TOKEN }} crowdin download + + - 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 'github-actions[bot]' + git config user.email 'github-actions[bot]@users.noreply.github.com' + + 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.GITHUB_TOKEN }} + branch: master