Skip to content

Commit

Permalink
chore: fix release-plz pr creation
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 10, 2025
1 parent a4d4133 commit c2accc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xtasks/release-plz
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ git commit -m "chore: release $version"
git push origin release --force

if [[ "$(gh pr list --label release)" == "" ]]; then
gh pr create --title "chore: release $version" --body "$changelog" --label "release"
gh pr create --title "chore: release $version" --body "$changelog" --label "release" --head release
else
gh pr edit --title "chore: release $version" --body "$changelog"
gh pr edit --title "chore: release $version" --body "$changelog" --head release
fi

0 comments on commit c2accc5

Please sign in to comment.