There was an error while loading. Please reload this page.
1 parent 537584e commit cb76341Copy full SHA for cb76341
1 file changed
.github/workflows/readme-translator.yml
@@ -0,0 +1,33 @@
1
+name: Translate README
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - dev
7
+ - stable
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Setup Node.js
14
+ uses: actions/setup-node@v1
15
+ with:
16
+ node-version: 12.x
17
+ # ISO Language Codes: https://cloud.google.com/translate/docs/languages
18
+ - name: Adding README - Chinese Simplified
19
+ uses: dephraiim/translate-readme@main
20
21
+ LANG: zh-CN
22
+ - name: Adding README - Chinese Traditional
23
24
25
+ LANG: zh-TW
26
+ - name: Adding README - Japanese
27
28
29
+ LANG: ja
30
+ - name: Adding README - Korean
31
32
33
+ LANG: ko
0 commit comments