14 lines
No EOL
217 B
YAML
14 lines
No EOL
217 B
YAML
on: [workflow_dispatch]
|
|
|
|
|
|
inputs:
|
|
input:
|
|
description: 'Input to update'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo All Good
|
|
- run: echo "${{ inputs.input }}"
|
|
shell: bash |