diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 38e10b9ce..b4082aee5 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -43,7 +43,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