From ed0be4507a29b92ac62a255ec004c9594e4bb558 Mon Sep 17 00:00:00 2001 From: silver Date: Tue, 6 Aug 2024 21:49:04 +0000 Subject: [PATCH] Update .forgejo/workflows/testing.yaml --- .forgejo/workflows/testing.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/testing.yaml b/.forgejo/workflows/testing.yaml index c030066..6f4d320 100644 --- a/.forgejo/workflows/testing.yaml +++ b/.forgejo/workflows/testing.yaml @@ -1,14 +1,15 @@ -on: [workflow_dispatch] - - -inputs: - input: - description: 'Input to update' +on: + workflow_dispatch: + inputs: + input_to_update: + description: 'Flake input to update' + required: true + type: string jobs: test: runs-on: ubuntu-latest steps: - run: echo All Good - - run: echo "${{ inputs.input }}" + - run: echo "${{ inputs.input_to_update }}" shell: bash \ No newline at end of file