Skip to content

Merge pull request #377 from approvals/dependabot/maven/com.fasterxml… #676

Merge pull request #377 from approvals/dependabot/maven/com.fasterxml…

Merge pull request #377 from approvals/dependabot/maven/com.fasterxml… #676

Workflow file for this run

name: FormatJava
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Format Code
run: mvn package -DskipTests=true
- name: Push changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "a reformat code" -a || echo "nothing to commit"
remote="https://${GITHUB_ACTOR}:${{secrets.GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git"
branch="${GITHUB_REF:11}"
git push "${remote}" ${branch} || echo "nothing to push"
shell: bash