-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix github actions for updating arlington branch
- Loading branch information
1 parent
0959107
commit 6cbacb9
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,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 | ||
|
@@ -63,7 +63,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 arlington | ||
if: success() | ||
run: | | ||
|