Skip to content

NNNN

NNNN #3

Workflow file for this run

name: Mixed inputs
on:
push:
branches:
- "test2"
pull_request:
branches:
- "main"
paths:
- ".github/workflows/test.yaml"
workflow_dispatch:
inputs:
name:
type: choice
description: Who to greet
options:
- monalisa
- cschleiden
required: true
use-emoji:
type: boolean
description: Include 🎉🤣 emojis
jobs:
greet:
runs-on: ubuntu-latest
steps:
- name: Send greeting
run: echo "${{ github.event.inputs.message }} ${{ fromJSON('["", "🥳"]')[github.event.inputs.use-emoji == 'true'] }} ${{ github.event.inputs.name }}"