merlyn/.github/workflows/test-dispatch.yaml
2026-03-05 08:45:29 -08:00

15 lines
241 B
YAML

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