Skip to content

Commit

Permalink
fix typo in description input
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaKav committed Aug 20, 2024
1 parent 9bb982e commit df44aed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bump-gitstream-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:
description: LINBEE-XXXX ticket number
default: LINBEE-8514
required: false
descritpion:
description: Add description for this version
description:
description: Add a description for this version
required: false
jobs:
publish_pr:
Expand Down Expand Up @@ -42,11 +42,11 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
echo -e "Bump \`@linearb/gitstream-core\` to \`${{ env.VERSION }}\`\n\n${{ inputs.descritpion }}" > pr_description.txt
echo -e "Bump \`@linearb/gitstream-core\` to \`${{ env.VERSION }}\`\n\n${{ inputs.description }}" > pr_description.txt
git config --global user.name 'GitHub Actions Bot'
git config --global user.email '[email protected]'
git add package.json package-lock.json dist/index.js
git commit -m "bump `@linearb/gitstream-core` to `${{ env.VERSION }}`" -m "${{ inputs.descritpion }}"
git commit -m "bump `@linearb/gitstream-core` to `${{ env.VERSION }}`" -m "${{ inputs.description }}"
git push origin HEAD:${{ env.BRANCH_NAME }}
gh pr create \
--base v2-develop \
Expand Down

0 comments on commit df44aed

Please sign in to comment.