-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
1 parent
eb25677
commit df2481f
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |