Skip to content

Commit 8648221

Browse files
committed
chore: apply suggestions
Signed-off-by: Adrien Mannocci <[email protected]>
1 parent 0579f47 commit 8648221

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pre-post-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ jobs:
7575
- name: Create a ${{ inputs.phase }} release branch
7676
run: git checkout -b ${{ env.BRANCH_NAME }}
7777

78-
- name: Pre bump versions (pre phase)
78+
- name: Set release version (pre release)
7979
if: inputs.phase == 'pre'
8080
uses: ./.github/workflows/maven-goal
8181
with:
8282
command: ./mvnw -V versions:set -DprocessAllModules=true -DgenerateBackupPoms=false -DnewVersion=${{ env.RELEASE_VERSION }}
8383

84-
- name: Post bump versions (post phase)
84+
- name: Set next snapshot version (post release)
8585
if: inputs.phase == 'post'
8686
uses: ./.github/workflows/maven-goal
8787
with:
@@ -90,7 +90,7 @@ jobs:
9090
- name: Push the ${{ inputs.phase }} release branch
9191
run: |
9292
git add --all
93-
git commit -m "release(${{ inputs.phase }}): ecs-logging-java v${{ env.RELEASE_VERSION }}"
93+
git commit -m "${{ inputs.phase }} release: ecs-logging-java v${{ env.RELEASE_VERSION }}"
9494
git push origin ${{ env.BRANCH_NAME }}
9595
9696
- name: Create the ${{ inputs.phase }} release PR

0 commit comments

Comments
 (0)