Add test workflow to diagnose dispatch issue
This commit is contained in:
parent
b36c988173
commit
7e90ce0377
1 changed files with 15 additions and 0 deletions
15
.github/workflows/manual-test.yml
vendored
Normal file
15
.github/workflows/manual-test.yml
vendored
Normal 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 }}"
|
||||||
Loading…
Reference in a new issue