Skip to content

Commit

Permalink
Command should be required
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Aug 28, 2024
1 parent f25e165 commit 6c0649d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ inputs:
runs:
using: 'composite'
steps:
- name: Check if token is set
- name: Check if command is set
shell: bash
run: |
if [[ -z "${{ inputs.token }}" ]]; then
echo "Token is required."
if [[ -z "${{ inputs.command }}" ]]; then
echo "Command is required."
exit 1
fi
- uses: actions/checkout@v4
Expand Down

0 comments on commit 6c0649d

Please sign in to comment.