From 9aacc8ddabd5648fb350182378b1cc28b6a3034d Mon Sep 17 00:00:00 2001 From: zugdev Date: Tue, 26 Nov 2024 23:18:24 -0300 Subject: [PATCH] feat: fix pr edit in sequent workflow --- .github/workflows/sync-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-template.yml b/.github/workflows/sync-template.yml index 504874f..33c0ce4 100644 --- a/.github/workflows/sync-template.yml +++ b/.github/workflows/sync-template.yml @@ -131,6 +131,6 @@ jobs: if [[ -z "$existing_pr" ]]; then gh pr create --title "Sync branch to template" --body "This pull request merges changes from the template repository, overwriting or removing the following files:${file_list}" --head "$pr_branch" --base "$branch_name" else - gh pr edit "$existing_pr" --body "This pull request merges changes from the template repository, overwriting or removing the following files:${file_list}" + gh pr edit "$pr_branch" --body "This pull request merges changes from the template repository, overwriting or removing the following files:${file_list}" echo "Updated the existing pull request #$existing_pr." fi