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