Added simple forgejo workflow

This commit is contained in:
Tom Bloor 2025-03-07 15:32:31 +00:00
parent a299345d4c
commit 863ffa8544
Signed by: TBSliver
GPG key ID: 4657C7EBE42CC5CC

View file

@ -0,0 +1,14 @@
on:
workflow_dispatch:
inputs:
message:
description: 'Some Message'
required: true
type: string
jobs:
ping:
runs-on: docker
steps:
- run: echo "Ping Pong, this is your runner speaking!"
run: echo "Printing Message: {{ inputs.message }}"