Merge pull request 'Added simple forgejo workflow' (#3) from tbsliver/ci into main

Reviewed-on: #3
This commit is contained in:
Tom Bloor 2025-03-07 15:34:32 +00:00
commit ebb3c13fe1

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 }}"