12 lines
225 B
YAML
12 lines
225 B
YAML
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
string1_default:
|
|
description: 'String w. default'
|
|
default: 'Hello world'
|
|
type: string
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- run: echo All Good
|