by shigemk2

当面は技術的なことしか書かない

GitHub Actions inputs

boolじゃなくてboolean

on:
  workflow_dispatch:
    inputs:
      name:
        type: choice
        description: Who to greet
        options: 
        - monalisa
        - cschleiden
      message:
        required: true
      use-emoji:
        type: boolean
        description: Include  emojis
      environment:
        type: environment

github.blog