-
Notifications
You must be signed in to change notification settings - Fork 6
74 lines (72 loc) · 2.03 KB
/
sync-gt-lang-to-paratranz-all-langs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Sync GT lang to ParaTranz for all langs
on:
workflow_dispatch:
jobs:
# zh_CN:
# uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
# with:
# target_lang: zh_CN
# secrets: inherit
ja_JP:
uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
# needs: zh_CN # Wait for previous run to finish
if: success() || failure()
with:
target_lang: ja_JP
secrets: inherit
ko_KR:
uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
needs: ja_JP # Wait for previous run to finish
if: success() || failure()
with:
target_lang: ko_KR
secrets: inherit
pt_BR:
uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
needs: ko_KR # Wait for previous run to finish
if: success() || failure()
with:
target_lang: pt_BR
secrets: inherit
fr_FR:
uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
needs: pt_BR # Wait for previous run to finish
if: success() || failure()
with:
target_lang: fr_FR
secrets: inherit
es_ES:
uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
needs: fr_FR # Wait for previous run to finish
if: success() || failure()
with:
target_lang: es_ES
secrets: inherit
tr_TR:
uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
needs: es_ES # Wait for previous run to finish
if: success() || failure()
with:
target_lang: tr_TR
secrets: inherit
de_DE:
uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
needs: tr_TR # Wait for previous run to finish
if: success() || failure()
with:
target_lang: de_DE
secrets: inherit
pl_PL:
uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
needs: de_DE # Wait for previous run to finish
if: success() || failure()
with:
target_lang: pl_PL
secrets: inherit
ru_RU:
uses: ./.github/workflows/sync-gt-lang-to-paratranz.yml
needs: pl_PL # Wait for previous run to finish
if: success() || failure()
with:
target_lang: ru_RU
secrets: inherit