add workflow_dispatch test
This commit is contained in:
parent
c98dcce59f
commit
24412b28cd
1 changed files with 11 additions and 0 deletions
11
.forgejo/workflows/dispatch.yml
Normal file
11
.forgejo/workflows/dispatch.yml
Normal 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)"
|
||||
Loading…
Add table
Add a link
Reference in a new issue