From 425b37319743c3906ee910aec7ec0f1a3f565c56 Mon Sep 17 00:00:00 2001 From: Silvija Tovernic Date: Wed, 18 Sep 2024 11:59:30 +0200 Subject: [PATCH] add: test runner workflow --- .github/workflows/test-workflow.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test-workflow.yml diff --git a/.github/workflows/test-workflow.yml b/.github/workflows/test-workflow.yml new file mode 100644 index 00000000..6f9193c1 --- /dev/null +++ b/.github/workflows/test-workflow.yml @@ -0,0 +1,22 @@ +name: _Test Workflow + +on: + workflow_dispatch: + inputs: + runsOn: + description: 'Runs-On: Runner' + required: true + default: 'self-hosted' + type: string + command: + description: 'run: Command' + required: true + default: 'echo "test"' + type: string + +jobs: + build: + runs-on: ${{ inputs.runsOn }} + steps: + - name: Run Command + run: ${{ inputs.command }}