Skip to content

Commit 2aa33bc

Browse files
authored
fix: duplicated v on version bump (#125)
1 parent 1d65e0b commit 2aa33bc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/prepare_release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
- name: Create release PR
3434
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # 7.0.8
3535
with:
36-
title: "Release v${{ steps.bump-version.outputs.NEW_VERSION }}"
36+
title: "Release ${{ steps.bump-version.outputs.NEW_VERSION }}"
3737
token: ${{ steps.app-token.outputs.token }}
38-
commit-message: "Bump version to v${{ steps.bump-version.outputs.NEW_VERSION }}"
38+
commit-message: "Bump version to ${{ steps.bump-version.outputs.NEW_VERSION }}"
3939
body: |
40-
This PR bumps the package version to v${{ steps.bump-version.outputs.NEW_VERSION }}.
40+
This PR bumps the package version to ${{ steps.bump-version.outputs.NEW_VERSION }}.
4141
Once merged, the new version will be published to npm.
4242
base: main
43-
branch: release/v${{ steps.bump-version.outputs.NEW_VERSION }}
43+
branch: release/${{ steps.bump-version.outputs.NEW_VERSION }}
4444
author: "${{ steps.app-token.outputs.app-slug}}[bot] <${{ steps.app-token.outputs.app-email }}>"
4545
committer: "${{ steps.app-token.outputs.app-slug}}[bot] <${{ steps.app-token.outputs.app-email }}>"

0 commit comments

Comments
 (0)