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 6f1829b commit dfe9bfeCopy full SHA for dfe9bfe
.github/workflows/prepare_release_branch.yml
@@ -4,8 +4,9 @@ on:
4
workflow_dispatch:
5
inputs:
6
version_part:
7
- description: The part of the version to update (patch, minor or major)
+ description: The part of the version to update (Patch, Minor or Major)
8
required: true
9
+ type: choice
10
options:
11
- Patch
12
- Minor
@@ -53,5 +54,5 @@ jobs:
53
54
run: |
55
git checkout main
56
mvn validate -D 'bump${{ github.event.inputs.version_part }}' -DgenerateBackupPoms=false
- git commit -m "Bump development version to $(mvn -B help:evaluate -Dexpression=project.version -q -DforceStdout)"
57
+ git commit -am "Bump development version to $(mvn -B help:evaluate -Dexpression=project.version -q -DforceStdout)"
58
git push origin main
0 commit comments