From 34800f80da040a4ddb3e39090eb4ecea609ee9a5 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 11 Dec 2024 22:00:47 +0100 Subject: [PATCH] Test choices Signed-off-by: Joas Schilling --- .github/workflows/dispatch.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dispatch.yml b/.github/workflows/dispatch.yml index eb5f2f1..94b8072 100644 --- a/.github/workflows/dispatch.yml +++ b/.github/workflows/dispatch.yml @@ -4,15 +4,19 @@ on: workflow_dispatch: inputs: page: - description: 'Page of the repository list to check (currently 1-3)' + description: 'Page of the repository list to check (currently 1-4)' required: true - type: number - default: 1 + type: choice + options: + - 1 + - 2 + - 3 + - 4 jobs: test-number: runs-on: ubuntu-latest steps: - - name: Download updater config + - name: Test ${{ github.event.inputs.page }} run: echo '${{ github.event.inputs.page }}'