Skip to content

Commit ffa9d15

Browse files
committed
Update bump-version-comment.yml
1 parent 8379800 commit ffa9d15

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/bump-version-comment.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ jobs:
99
if: |
1010
github.event.issue.pull_request &&
1111
(contains(github.event.comment.body, '@bump-patch') ||
12-
contains(github.event.comment.body, '@bump-minor') ||
13-
contains(github.event.comment.body, '@bump-major'))
12+
contains(github.event.comment.body, '@bump-minor'))
1413
runs-on: ubuntu-latest
1514
permissions:
1615
contents: write
@@ -54,8 +53,6 @@ jobs:
5453
VERSION_TYPE="patch"
5554
elif [[ "${{ github.event.comment.body }}" == *"@bump-minor"* ]]; then
5655
VERSION_TYPE="minor"
57-
elif [[ "${{ github.event.comment.body }}" == *"@bump-major"* ]]; then
58-
VERSION_TYPE="major"
5956
else
6057
echo "No valid version command found."
6158
exit 1

0 commit comments

Comments
 (0)