debug: add dummy source #11
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
name: Crowdin CI | |
on: | |
schedule: | |
- cron: "20 4 1 * *" # Runs at 4:20 AM on the first day of every month | |
workflow_dispatch: # Can be dispatched manually | |
push: # For testing purposes only; remove for production | |
branches: | |
- crowdin-ci-test | |
jobs: | |
create_approved_language_bucket_prs: | |
runs-on: ubuntu-latest | |
env: | |
CROWDIN_API_KEY: ${{ secrets.CROWDIN_API_KEY }} | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
# Set up environment | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn install | |
- name: Install ts-node | |
run: yarn global add ts-node | |
- name: Set up git | |
run: | | |
git config --global user.email "actions@github.com" | |
git config --global user.name "GitHub Action" | |
- name: Fetch latest dev | |
run: git fetch origin dev | |
# Build and download translations to ./crowdin | |
- name: Build Crowdin project | |
uses: crowdin/github-action@v1 | |
with: | |
config: "crowdin.yaml" | |
download_translations: true | |
project_id: ${{ secrets.CROWDIN_PROJECT_ID }} | |
api_token: ${{ secrets.CROWDIN_API_KEY }} | |
# Prepare bucket ids | |
- name: Get latest translation bucket directory ids | |
run: npx ts-node -O '{"module":"commonjs"}' ./src/scripts/crowdin/translations/getBucketDirectoryIds.ts | |
# Import approved translations | |
- name: Import approved translations | |
run: npx ts-node -O '{"module":"commonjs"}' ./src/scripts/crowdin/translations/importApprovedTranslations.ts | |
# Post updates as language-specific PRs | |
- name: Process commits and post PRs by language | |
run: npx ts-node -O '{"module":"commonjs"}' ./src/scripts/crowdin/translations/postLangPRs.ts |