From 4d1c3b62347b2fd5d167602a9dc427bae57c4224 Mon Sep 17 00:00:00 2001 From: kuuuube Date: Tue, 20 Jan 2026 01:19:34 -0500 Subject: [PATCH 1/2] Fix pr create action --- .github/workflows/update_config_branch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_config_branch.yml b/.github/workflows/update_config_branch.yml index 9b803c0..3ff3d8f 100644 --- a/.github/workflows/update_config_branch.yml +++ b/.github/workflows/update_config_branch.yml @@ -5,12 +5,12 @@ on: types: [published] jobs: - build-win: + create-pr: runs-on: ubuntu-latest permissions: contents: write steps: - name: create pull request - run: gh pr create --base v4.x --head main --title "Bump v4.x branch on release publish" + run: gh pr create --base v4.x --title "Bump v4.x branch on release publish" --body "" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 20a6dcbe8fb6c0bdbfbbf5d4cf420afa35d602a9 Mon Sep 17 00:00:00 2001 From: kuuuube Date: Tue, 20 Jan 2026 01:23:01 -0500 Subject: [PATCH 2/2] Use fill for creating pr body --- .github/workflows/update_config_branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_config_branch.yml b/.github/workflows/update_config_branch.yml index 3ff3d8f..0c27a73 100644 --- a/.github/workflows/update_config_branch.yml +++ b/.github/workflows/update_config_branch.yml @@ -11,6 +11,6 @@ jobs: contents: write steps: - name: create pull request - run: gh pr create --base v4.x --title "Bump v4.x branch on release publish" --body "" + run: gh pr create --base v4.x --title "Bump v4.x branch on release publish" --fill env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}