Skip to content

Commit 110e6c0

Browse files
committed
Fix make bump Github Action targetting wrong base for PR
1 parent 3d8781b commit 110e6c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/make-bump.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
createBranches:
14-
name: "Branch ${{ github.event.inputs.version }} Clients"
14+
name: "Bump ${{ github.event.inputs.version }} on branch ${{ github.event.inputs.branch }} "
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v2
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
token: ${{ secrets.GITHUB_TOKEN }}
2727
branch: "feature/${{ github.event.inputs.branch }}/bump-version"
28-
base: "${{ github.event.inputs.version }}"
28+
base: "${{ github.event.inputs.branch }}"
2929
delete-branch: true
3030
commit-message: "[version] ${{ github.event.inputs.version }} bump"
3131
title: '[version] ${{ github.event.inputs.version }} bump'

0 commit comments

Comments
 (0)