name: Auto I18N env: API_KEY: ${{ secrets.TRANSLATE_API_KEY}} MODEL: ${{ vars.MODEL || 'deepseek/deepseek-v3.1'}} BASE_URL: ${{ vars.BASE_URL || 'https://api.ppinfra.com/openai'}} on: pull_request: types: [opened, synchronize, reopened] workflow_dispatch: jobs: auto-i18n: runs-on: ubuntu-latest name: Auto I18N permissions: contents: write pull-requests: write steps: - name: πŸˆβ€β¬› Checkout uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.head.ref }} - name: πŸ“¦ Setting Node.js and Yarn uses: actions/setup-node@v4 with: node-version: 20 - name: πŸ“¦ Enable Yarn Corepack run: corepack enable - name: πŸ“¦ Install only required dependencies run: | mkdir -p temp-deps cd temp-deps echo '{"dependencies": {"openai": "^5.12.2", "cli-progress": "^3.12.0", "tsx": "^4.20.3"}}' > package.json npm install --no-package-lock cd .. ln -sf temp-deps/node_modules . - name: πŸƒβ€β™€οΈ Translate run: yarn run tsx scripts/update-i18n.ts - name: πŸ”„ Commit changes run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git add . git reset -- package.json yarn.lock # 不提亀 package.json ε’Œ yarn.lock ηš„ζ›΄ζ”Ή git commit -m "fix(i18n): Auto update translations for PR #${{ github.event.pull_request.number }}" - name: πŸš€ Push changes uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }} branch: ${{ github.event.pull_request.head.ref }}