Pulse/.github/workflows/manual-test.yml
Workflow config file is invalid. Please check your config file: yaml: line 15: mapping values are not allowed in this context
2025-11-13 23:26:39 +00:00

15 lines
319 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 }}"