1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Fix PR creation by using fully qualified refname on release

This commit is contained in:
itchyny
2023-07-28 17:47:51 +09:00
committed by GitHub
parent 17889a1a85
commit d319eb2187

View File

@ -396,5 +396,5 @@ jobs:
title="Update signatures of ${TAG_NAME#jq-}"
git commit -m "$title"
branch="update-signatures-${TAG_NAME#jq-}"
git push origin "HEAD:$branch"
git push origin "HEAD:refs/heads/$branch"
gh pr create --title "$title" --body "" --head "$branch"