Compiler-From-Scratch/.forgejo/workflows/trigger.yml
Workflow config file is invalid. Please check your config file: yaml: line 14: mapping values are not allowed in this context
Tom Bloor 0ed4e11dd7
All checks were successful
/ ping (pull_request) Successful in 1s
Change echo line
2025-03-07 16:03:41 +00:00

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