Compiler-From-Scratch/.forgejo/workflows/trigger.yml
Tom Bloor b8af617857
All checks were successful
/ ping (pull_request) Successful in 1s
Try again
2025-03-07 16:05:23 +00:00

15 lines
308 B
YAML

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!"
echo "Printing Message: ${{ inputs.message }}"