mirror of
https://github.com/webadderallorg/Recordly.git
synced 2026-09-24 14:55:37 +00:00
Add auto-translate workflow for zh-CN
This workflow automatically translates markdown files from English to Chinese (zh-CN) on pushes to the main branch.
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
name: Auto Translate to zh-CN
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- "*.md"
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
models: read
|
||||
|
||||
jobs:
|
||||
translate:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: .genaiscript/cache/**
|
||||
key: translation-cache-${{ github.run_id }}
|
||||
restore-keys: translation-cache-
|
||||
|
||||
- uses: pelikhan/action-continuous-translation@v0.2.11
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
source: en
|
||||
lang: zh
|
||||
files: "*.md;README.md;CONTRIBUTING.md;TRANSLATION_GUIDE.md;CLAUDE.md"
|
||||
filename_template: "{{ base }}.zh-CN{{ ext }}"
|
||||
|
||||
- uses: stefanzweifel/git-auto-commit-action@v5
|
||||
with:
|
||||
commit_message: "docs(zh-CN): auto-translate updates"
|
||||
file_pattern: "*.zh-CN.md"
|
||||
Reference in New Issue
Block a user