From 160c57de398dc2039b45e716ba0f9d62d24c7557 Mon Sep 17 00:00:00 2001 From: stovernic <34249785+stovernic@users.noreply.github.com> Date: Wed, 18 Sep 2024 12:11:29 +0200 Subject: [PATCH] feat: test runner workflow (#3) Adding test GitHub actions workflow for testing GitHub action runs. Co-authored-by: Silvija Tovernic --- .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 }}