From e056134fa671836540ba9f25de8ad170c4c825ee Mon Sep 17 00:00:00 2001 From: Kamal Tufekcic Date: Mon, 27 Jul 2026 10:26:06 +0300 Subject: [PATCH] add game options --- .forgejo/workflows/backfill.yml | 7 ++++++- .forgejo/workflows/derive.yml | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/backfill.yml b/.forgejo/workflows/backfill.yml index 085c27b..1849c3b 100644 --- a/.forgejo/workflows/backfill.yml +++ b/.forgejo/workflows/backfill.yml @@ -3,12 +3,17 @@ on: workflow_dispatch: inputs: game: - description: "Game key (cs2 or dota2)" + description: "Game key" required: true default: cs2 + type: choice + options: + - cs2 + - dota2 names: description: 'Names JSON — array of {name, class, slot}' required: true + type: string jobs: backfill: diff --git a/.forgejo/workflows/derive.yml b/.forgejo/workflows/derive.yml index 491a3bb..991da7d 100644 --- a/.forgejo/workflows/derive.yml +++ b/.forgejo/workflows/derive.yml @@ -3,9 +3,13 @@ on: workflow_dispatch: inputs: game: - description: "Game key (cs2 or dota2)" + description: "Game key" required: true default: cs2 + type: choice + options: + - cs2 + - dota2 concurrency: group: derive-${{ github.event.inputs.game }}