Skip to content

Manual trigger

Manual trigger #1

Workflow file for this run

name: Manual trigger
on:
workflow_dispatch:
inputs:
name:
description: "Who to greet"
default: "World"
jobs:
hello:
runs-on: ubuntu-latest
steps:
- name: Hello Step
run: echo "Hello ${{ github.event.inputs.name }}"