Test dispatch workflow

This commit is contained in:
Timothy Carambat 2026-03-05 08:45:29 -08:00
parent 364b3696f9
commit cfbd339cde

14
.github/workflows/test-dispatch.yaml vendored Normal file
View File

@ -0,0 +1,14 @@
name: Test Dispatch
on:
workflow_dispatch:
inputs:
test_input:
description: 'Test input'
required: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo "Input was ${{ inputs.test_input }}"