Pulse/.github/workflows/manual-test.yml
2025-11-13 23:54:55 +00:00

16 lines
331 B
YAML

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