Skip to content

Commit c656c45

Browse files
committed
test manual workflow
1 parent 0e76d65 commit c656c45

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/klass-dev.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@ name: Klass dev
33
on:
44
push:
55
workflow_dispatch:
6+
inputs:
7+
message:
8+
description: "Which message?"
9+
required: true
10+
type: choice
11+
options:
12+
- "My name"
13+
- "Your name"
614

715
jobs:
816
test:
917
runs-on: ubuntu-latest
1018
steps:
11-
- run: echo "Hello, workflow!"
19+
- run: echo ${{github.event.inputs.message}}

0 commit comments

Comments
 (0)