add game options
All checks were successful
CI / lint (push) Successful in 16s
CI / fuzz (push) Successful in 1m39s
CI / test (push) Successful in 20s

This commit is contained in:
Kamal Tufekcic 2026-07-27 10:26:06 +03:00
commit e056134fa6
2 changed files with 11 additions and 2 deletions

View file

@ -3,12 +3,17 @@ on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
game: game:
description: "Game key (cs2 or dota2)" description: "Game key"
required: true required: true
default: cs2 default: cs2
type: choice
options:
- cs2
- dota2
names: names:
description: 'Names JSON — array of {name, class, slot}' description: 'Names JSON — array of {name, class, slot}'
required: true required: true
type: string
jobs: jobs:
backfill: backfill:

View file

@ -3,9 +3,13 @@ on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
game: game:
description: "Game key (cs2 or dota2)" description: "Game key"
required: true required: true
default: cs2 default: cs2
type: choice
options:
- cs2
- dota2
concurrency: concurrency:
group: derive-${{ github.event.inputs.game }} group: derive-${{ github.event.inputs.game }}