From b650f7e174701d4c3f2dc71f36e2efba65f3124f Mon Sep 17 00:00:00 2001 From: rcourtman Date: Thu, 13 Nov 2025 23:45:23 +0000 Subject: [PATCH] Add minimal test workflow --- .github/workflows/test-simple.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test-simple.yml 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 }}"