Skip to content

Manual Workflow build #28

Manual Workflow build

Manual Workflow build #28

Workflow file for this run

name: Manual Workflow
on:
workflow_dispatch:
inputs:
name:
description: 'Person to greet'
required: true
default: 'World'
jobs:
greet:
runs-on: ubuntu-latest
steps:
- name: Say hello
run: echo "Hello, ${{ github.event.inputs.name }}!"