Skip to content

Commit

Permalink
fix: pr number check and tags in main merge
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Dec 1, 2023
1 parent b986855 commit a19ba91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
echo -e "Last merged PR: ${PR_NO}"
# Validate PR number and send to GitHub Output
if [ "${PR_NO}" =~ ^[0-9]+$ ]; then
if [[ "${PR_NO}" =~ ^[0-9]+$ ]]; then
echo "No PR number not found"
exit 1
fi
Expand Down

0 comments on commit a19ba91

Please sign in to comment.