- r Bump the junit group across 1 directory with 3 updates #1365
This file contains hidden or 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
name: FormatJava | |
on: | |
push: | |
# Cancel existing executions when new commits are pushed onto the branch | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Format Code | |
run: mvn package -DskipTests=true | |
- name: Git Commit and Push | |
uses: github-actions-x/[email protected] | |
with: | |
commit-message: ". a reformat code" | |
rebase: 'true' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push-branch: 'master' | |
name: github actions | |
email: [email protected] |