Skip to content

Welcome a user via a Docker Action #1

Welcome a user via a Docker Action

Welcome a user via a Docker Action #1

Workflow file for this run

name: Welcome a user via a Docker Action
on:
workflow_dispatch:
inputs:
thename:
description: "Who should we greet?"
type: string
required: true
jobs:
say_hello:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/action-docker
with:
thename: ${{ inputs.thename }}