1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

[CI skip] Nope

This commit is contained in:
TheBusyBiscuit 2020-10-09 20:49:10 +02:00 committed by GitHub
parent ab1dc57336
commit 7cf01a5b92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,29 +0,0 @@
name: Clean up Imports
on:
push:
paths:
- 'src/main/java/**'
jobs:
cleanup:
name: Clean up Imports
runs-on: ubuntu-latest
if: github.event.pull_request.base.repo.full_name != 'Slimefun/Slimefun4'
steps:
- name: Checkout repository
uses: actions/checkout@v2.3.3
- name: Set up Java JDK 11
uses: actions/setup-java@v1.4.3
with:
java-version: 11
- name: Google Java Format
uses: axel-op/googlejavaformat-action@v3.4.0
with:
files: '**/*.java'
skipCommit: false
commitMessage: "[CI skip] Cleaned up Imports"
args: "--fix-imports-only --replace"
githubToken: ${{ secrets.GITHUB_TOKEN }}