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 }}