Skip to content

Commit

Permalink
Fix conditional name
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Dec 6, 2023
1 parent 618303b commit 76ad619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ runs:
fi
# Validate PR number
if [ ! "${pr}" =~ ^[0-9]+$ ]; then
if [[ ! "${pr}" =~ ^[0-9]+$ ]]; then
echo "PR number format incorrect: ${pr}"
exit 1
fi
Expand Down

0 comments on commit 76ad619

Please sign in to comment.