From 7e90ce037784055c5c17f307002fb24cb7817d47 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Thu, 13 Nov 2025 23:26:39 +0000 Subject: [PATCH] Add test workflow to diagnose dispatch issue --- .github/workflows/manual-test.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/manual-test.yml diff --git a/.github/workflows/manual-test.yml b/.github/workflows/manual-test.yml new file mode 100644 index 0000000..ac613bf --- /dev/null +++ b/.github/workflows/manual-test.yml @@ -0,0 +1,15 @@ +name: Manual Test Workflow +on: + workflow_dispatch: + inputs: + test_input: + description: 'Test input' + required: false + type: string + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Echo test + run: echo "Test workflow triggered with input: ${{ inputs.test_input }}"