From e156b61105689134d4ccf4b0df545e888977f515 Mon Sep 17 00:00:00 2001 From: silver Date: Tue, 6 Aug 2024 21:41:00 +0000 Subject: [PATCH] Update .forgejo/workflows/testing.yaml --- .forgejo/workflows/testing.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/testing.yaml b/.forgejo/workflows/testing.yaml index f4abc03..a18a90b 100644 --- a/.forgejo/workflows/testing.yaml +++ b/.forgejo/workflows/testing.yaml @@ -1,6 +1,13 @@ on: [workflow_dispatch] + + +inputs: + input: + description: 'Input to update' + jobs: test: runs-on: ubuntu-latest steps: - - run: echo All Good \ No newline at end of file + - run: echo All Good + - run: echo "Update: ${{ inputs.input }}" \ No newline at end of file