pr-changelog-action/entrypoint.sh
Arswarog a627b29230
Some checks failed
Continuous Integration / container (push) Failing after 0s
Continuous Integration / Docker Tests (push) Failing after 1s
Continuous Integration / GitHub Actions Test (push) Failing after 1s
Lint Codebase / Lint Codebase (push) Failing after 2s
/ A job to say hello (push) Failing after 1s
10
2025-03-20 15:11:36 +03:00

13 lines
258 B
Bash
Executable File

#!/bin/sh -l
# Use INPUT_<INPUT_NAME> 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