From e5ea0ff15f0c55cb149429fc475577cc9f3ebceb Mon Sep 17 00:00:00 2001 From: Misha Kav Date: Mon, 21 Apr 2025 19:21:38 +0300 Subject: [PATCH] Update ticket description format and simplify PR description handling in bump-gitstream-core workflow --- .github/workflows/bump-gitstream-core.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bump-gitstream-core.yml b/.github/workflows/bump-gitstream-core.yml index 481eb338..f5d29a3b 100644 --- a/.github/workflows/bump-gitstream-core.yml +++ b/.github/workflows/bump-gitstream-core.yml @@ -10,7 +10,7 @@ on: required: true default: 2.1.133 ticket: - description: LINBEE-XXXX ticket number + description: LINBEE-XXXXX ticket number default: LINBEE-8514 required: false description: @@ -54,11 +54,11 @@ jobs: env: GH_TOKEN: ${{ github.token }} run: | - echo -e "Bump \`@linearb/gitstream-core\` to \`${{ env.VERSION }}\`\n\n${{ inputs.description }}" > pr_description.txt + echo -e "${{ inputs.description }}" > pr_description.txt git config --global user.name 'GitHub Actions Bot' git config --global user.email 'actions@github.com' git add package.json package-lock.json dist/index.js - git commit -m "bump `@linearb/gitstream-core` to `${{ env.VERSION }}`" -m "${{ inputs.description }}" + git commit -m "bump `@linearb/gitstream-core` to `${{ env.VERSION }}`" git push origin HEAD:${{ env.BRANCH_NAME }} gh pr create \ --base develop \