We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8379800 commit ffa9d15Copy full SHA for ffa9d15
.github/workflows/bump-version-comment.yml
@@ -9,8 +9,7 @@ jobs:
9
if: |
10
github.event.issue.pull_request &&
11
(contains(github.event.comment.body, '@bump-patch') ||
12
- contains(github.event.comment.body, '@bump-minor') ||
13
- contains(github.event.comment.body, '@bump-major'))
+ contains(github.event.comment.body, '@bump-minor'))
14
runs-on: ubuntu-latest
15
permissions:
16
contents: write
@@ -54,8 +53,6 @@ jobs:
54
53
VERSION_TYPE="patch"
55
elif [[ "${{ github.event.comment.body }}" == *"@bump-minor"* ]]; then
56
VERSION_TYPE="minor"
57
- elif [[ "${{ github.event.comment.body }}" == *"@bump-major"* ]]; then
58
- VERSION_TYPE="major"
59
else
60
echo "No valid version command found."
61
exit 1
0 commit comments