#!/bin/sh -l # Use INPUT_ to get the value of an input GREETING="Hello, $INPUT_WHO_TO_GREET!" # Use workflow commands to do things like set debug messages echo "$GREETING" # Write outputs to the $GITHUB_OUTPUT file echo "time=$(date)" exit 0