add workflow_dispatch test

This commit is contained in:
gbaranski 2026-06-19 18:32:25 +02:00
parent c98dcce59f
commit 24412b28cd

View file

@ -0,0 +1,11 @@
on:
workflow_dispatch:
inputs:
who:
description: who to greet
default: world
jobs:
hello:
runs-on: ubuntu-latest
steps:
- run: echo "hello ${{ inputs.who }} from $(uname -srm)"