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

14 lines
298 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 }}"