Hello Someone #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Hello Someone | |
on: | |
workflow_dispatch: | |
inputs: | |
who-to-greet: | |
description: 'Who to greet' | |
required: false | |
default: 'World' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 1 # Keeps your builds from running too long | |
steps: | |
- name: Greeting | |
run: | | |
echo "Hello ${{ inputs.who-to-greet }}!" | |
- name: Goodbye | |
run: | | |
echo "Goodbye ${{ github.actor }}!" |