-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (49 loc) · 1.43 KB
/
trigger-all-sync-upstream.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
name: Trigger-Localisation-Upstream-Sync-Builds
on:
workflow_dispatch:
inputs:
Language:
description: "Select All languages to sync"
required: false
type: choice
options:
- ALL
COUNTRY:
description: "Select individual language to sync"
required: false
type: choice
options:
- PT-BR
- DE
- ES
- FR
- IT
- JA
- KO
- PL
- RU
- ZH
jobs:
Trigger-Localisation-Upstream-Sync:
name:
runs-on: ubuntu-22.04
strategy:
matrix:
language: [PT-BR, DE, ES, FR, IT, JA, KO, PL, RU, ZH]
steps:
- name: Invoke Localisation Syncing
if: ${{ github.event.inputs.Language == 'ALL' }}
uses: benc-uk/workflow-dispatch@v1
with:
workflow: sync.yml
repo: YoYoGames/GameMaker-Manual-${{ matrix.language }}
token: ${{ secrets.GH_TOKEN }}
continue-on-error: false
- name: Invoke Localisation Syncing
if: ${{ github.event.inputs.COUNTRY != ''}}
uses: benc-uk/workflow-dispatch@v1
with:
workflow: sync.yml
repo: YoYoGames/GameMaker-Manual-${{ matrix.language }}
token: ${{ secrets.GH_TOKEN }}
continue-on-error: false