We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d320c1 commit 000a480Copy full SHA for 000a480
1 file changed
.github/workflows/create_release.yml
@@ -44,12 +44,12 @@ jobs:
44
VERSION='${{ inputs.version }}'
45
INCR='${{ inputs.increment }}'
46
if [[ "$MODE" == "explicit" && -z "$VERSION" ]]; then
47
- echo "❌ mode=explicit requires 'version' (e.g., 1.3-alpha)."; exit 1
+ echo "? mode=explicit requires 'version' (e.g., 1.3-alpha)."; exit 1
48
fi
49
if [[ "$MODE" == "bump" && -z "$INCR" ]]; then
50
- echo "❌ mode=bump requires 'increment' (major|minor|patch)."; exit 1
+ echo "? mode=bump requires 'increment' (major|minor|patch)."; exit 1
51
52
- echo "✅ inputs look good."
+ echo "? inputs look good."
53
54
set-version:
55
needs: validate-inputs
0 commit comments