ci: Clean up old release PR before creating a new one

This commit is contained in:
Chris Hennick 2024-05-10 08:40:05 -07:00
parent c8a68fa727
commit ea2907fb9b
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -21,6 +21,14 @@ jobs:
toolchain: nightly
override: true
profile: minimal
- name: Close old release PR
run: |
# 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
gh pr close $release_pr
fi
- name: Run release-plz
uses: MarcoIeni/release-plz-action@v0.5
env: