Add test workflow to diagnose dispatch issue

This commit is contained in:
rcourtman 2025-11-13 23:26:39 +00:00
parent b36c988173
commit 7e90ce0377

15
.github/workflows/manual-test.yml vendored Normal file
View file

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