Skip to content

Commit

Permalink
Fix github actions for updating jakarta branch
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed May 22, 2024
1 parent 2229425 commit 47a8c00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-jakarta-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
git config user.name "Git User"
git config user.email "[email protected]"
- name: Add commit to the test branch
run: git cherry-pick -m 1 ${{ github.event.before }}..${{ github.event.after }}
run: git cherry-pick -m 1 ${{ github.event.before }}..${{ github.event.after }} --empty=drop
- name: Build project with Maven
if: success()
run: mvn --batch-mode --update-snapshots verify
Expand All @@ -64,7 +64,7 @@ jobs:
git config user.name "Git User"
git config user.email "[email protected]"
- name: Add commit to new branch
run: git cherry-pick -m 1 ${{ github.event.before }}..${{ github.event.after }}
run: git cherry-pick -m 1 ${{ github.event.before }}..${{ github.event.after }} --empty=drop
- name: Merge branch into jakarta
if: success()
run: |
Expand Down

0 comments on commit 47a8c00

Please sign in to comment.