Skip to content

Demo

Demo #3

Workflow file for this run

name: Demo
# Controls when the workflow will run
on:
workflow_dispatch:
inputs:
some_name:
description: 'Some description'
required: true
default: 'Some default value'
type: string
jobs:
say:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: say-it
uses: ./.github/actions/hello-world
with:
yourname: ${{ inputs.some_name }}