Added simple forgejo workflow #3

Merged
TBSliver merged 1 commit from tbsliver/ci into main 2025-03-07 15:34:33 +00:00
Showing only changes of commit 863ffa8544 - Show all commits

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