Revert "ci: Bug fix: empty check was missing $"

This reverts commit 9fa26892fd.
This commit is contained in:
Chris Hennick 2024-05-12 11:25:13 -07:00
parent 629623594d
commit f2b6be8fd3
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -26,11 +26,8 @@ jobs:
# List all opened PRs which head branch starts with "release-plz-"
release_pr=$(gh pr list --state='open' --json number,headRefName --jq '.[] | select(.headRefName | startswith("release-plz-")) | .number')
# Close the release PR if there is one
if [[ -n "$release_pr" ]]; then
echo "Closing old release PR $release_pr"
if [[ -n "release_pr" ]]; then
gh pr close $release_pr
else
echo "No open release PR"
fi
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_PAT }}