diff --git a/.github/workflows/test-simple.yml b/.github/workflows/test-simple.yml new file mode 100644 index 0000000..3115908 --- /dev/null +++ b/.github/workflows/test-simple.yml @@ -0,0 +1,16 @@ +name: Test Simple Workflow + +on: + workflow_dispatch: + inputs: + test: + description: 'Test' + required: false + type: string + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Echo + run: echo "Test input: ${{ inputs.test }}"