summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authoritchyny <itchyny@cybozu.co.jp>2023-07-28 17:47:51 +0900
committerGitHub <noreply@github.com>2023-07-28 17:47:51 +0900
commitd319eb21879eba6ad34f24c51883bc1b1682d3fe (patch)
tree7ccedaff18e518da76257d14f3604f2c35b709af /.github
parent17889a1a85c79b8e08179370aec51131f69a503e (diff)
Fix PR creation by using fully qualified refname on release
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d17223d7..4375d87d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -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"