Skip to content

Commit bfe7953

Browse files
committed
Fixing branch creation skip logic
1 parent 099bf14 commit bfe7953

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: "Create a branch if we are making a major / minor release"
6767
uses: peterjgrainger/[email protected]
68-
if: ${{ inputs.major }} || ${{ inputs.minor }}
68+
if: ${{ inputs.release_type }} == "minor" || ${{ inputs.release_type }} == "major"
6969
env:
7070
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7171
with:

0 commit comments

Comments
 (0)