Skip to content

Run Github Actions Inputs, outputs, needs #1

Run Github Actions Inputs, outputs, needs

Run Github Actions Inputs, outputs, needs #1

### github-actions-variable-04.yml
name: Test Github Actions variable-04
run-name: Run Github Actions Inputs, outputs, needs
on:
workflow_dispatch:
inputs:
name:
description: '이름'
required: true
default: 'INPUT'
jobs:
input-data:
runs-on: ubuntu-latest
steps:
- name: Print input data
run: echo "Hello, ${{ github.event.inputs.name }}"