From e0a3d733402e4717fbd77acc3e70ca9241e8277b Mon Sep 17 00:00:00 2001 From: Misha Kav Date: Sun, 31 Aug 2025 10:07:30 +0300 Subject: [PATCH] fix: remove extra backslash escaping in PR title for bump-gitstream-core workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/bump-gitstream-core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bump-gitstream-core.yml b/.github/workflows/bump-gitstream-core.yml index e88ea0ba..ad581d9b 100644 --- a/.github/workflows/bump-gitstream-core.yml +++ b/.github/workflows/bump-gitstream-core.yml @@ -71,6 +71,6 @@ jobs: git push origin HEAD:${{ env.BRANCH_NAME }} gh pr create \ --base develop \ - --title "Bump \`@linearb/gitstream-core\` to \`${{ env.VERSION }}\`" \ + --title "Bump `@linearb/gitstream-core` to `${{ env.VERSION }}`" \ --body-file pr_description.txt \ --head ${{ env.BRANCH_NAME }} ${{ env.REVIEWER_ARG }} ${{ env.LABEL_ARG }}