Skip to content

Manual Action

Manual Action #1

Workflow file for this run

name: Manual Action
on:
workflow_dispatch:
inputs:
greeting:
type: string
description: 'Greeting message'
required: true
default: 'Hello, World!'
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Say hello
run: echo "${{ github.event.inputs.greeting }}"