Skip to content

Commit

Permalink
Merge branch 'main' of github.com:creativecouple/isbn-validation-java…
Browse files Browse the repository at this point in the history
… into main
  • Loading branch information
CreativeCouple-Jenkins committed Aug 27, 2023
2 parents c4caafe + dbc1ff9 commit 3094bd7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test-and-merge-from-dev-to-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jobs:
fetch-depth: 0

- name: Checkout current changes
run: git rebase $GITHUB_SHA
run: |
git config --global user.email "[email protected]"
git config --global user.name "Jenkins"
git rebase $GITHUB_SHA
- name: Set up JDK 17
uses: actions/setup-java@v3
Expand All @@ -29,6 +32,6 @@ jobs:

- name: Commit and push changes
run: |
git -c "user.name=Jenkins" -c "[email protected]" commit -a --amend --no-edit --allow-empty
git commit -a --amend --no-edit --allow-empty
git rebase --no-keep-empty --empty=drop --force-rebase origin/main
git push origin HEAD:main

0 comments on commit 3094bd7

Please sign in to comment.