22 lines
356 B
YAML
22 lines
356 B
YAML
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
test-a:
|
|
type: boolean
|
|
test-b:
|
|
type: choice
|
|
options:
|
|
- a
|
|
- b
|
|
- c
|
|
- d
|
|
test-c:
|
|
description: One with description!
|
|
type: boolean
|
|
jobs:
|
|
_:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- run: ${{ tojson(inputs) }}
|
|
shell: cat {0}
|