From f364cafea2fab05cc64b090f068b9af8df34f5a6 Mon Sep 17 00:00:00 2001 From: Andy Augustin Date: Sun, 16 Jun 2024 13:31:23 +0200 Subject: [PATCH] fix: :bug: issue with gh pr edit Signed-off-by: Andy Augustin --- src/sync_template.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sync_template.sh b/src/sync_template.sh index 9d2bbf0..1eee270 100755 --- a/src/sync_template.sh +++ b/src/sync_template.sh @@ -343,7 +343,7 @@ function create_or_edit_pr() { local labels=$4 local reviewers=$5 - create_pr "${title}" "${body}" "${branch}" "${labels}" "${reviewers}" || gh pr edit \ + create_pr "${title}" "${body}" "${branch}" "${labels}" "${reviewers}" || gh pr edit "${branch}" \ --title "${title}" \ --body "${body}" \ --add-label "${labels}" \