-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding worflow to trigger upstream-sync to all repos from this repo
- Loading branch information
1 parent
c1b74f2
commit 7dd0bc8
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Trigger-Localisation-Upstream-Sync-Builds | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
Language: | ||
description: "Select All languages to build" | ||
required: false | ||
type: choice | ||
options: | ||
- ALL | ||
COUNTRY: | ||
description: "Select individual language to build" | ||
required: true | ||
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 Workflows | ||
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 Workflows | ||
if: ${{ matrix.language }} == '' | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: sync.yml | ||
repo: YoYoGames/GameMaker-Manual-${{ matrix.language }} | ||
token: ${{ secrets.GH_TOKEN }} | ||
continue-on-error: false | ||
|
||
|
||
|