We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba9838b commit 80c8956Copy full SHA for 80c8956
.github/workflows/create-release.yml
@@ -29,7 +29,7 @@ jobs:
29
mvn versions:set -DnewVersion="${{ github.event.inputs.NEW_RELEASE_VERSION }}"
30
mvn versions:commit
31
git add .
32
- git commit -m "Release ${{ github.event.inputs.NEW_RELEASE_VERSION }}"
+ git commit -m "chore(release): release ${{ github.event.inputs.NEW_RELEASE_VERSION }}"
33
git push
34
35
- name: Determine next SNAPSHOT
@@ -41,5 +41,5 @@ jobs:
41
mvn versions:set -DnewVersion="${{ env.NEXT_RELEASE_VERSION }}-SNAPSHOT"
42
43
44
- git commit -m "Move to next SNAPSHOT"
+ git commit -m "chore(release): next version is ${{ env.NEXT_RELEASE_VERSION }}-SNAPSHOT"
45
0 commit comments