From 409d1b6b732df6f4894286f10e70ea029e60c024 Mon Sep 17 00:00:00 2001 From: shellhub Date: Sat, 24 Oct 2020 17:16:41 +0800 Subject: [PATCH] remove prettier --- .github/workflows/prettier.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/prettier.yml diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml deleted file mode 100644 index ea5320133..000000000 --- a/.github/workflows/prettier.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Prettier - -on: - pull_request: - push: - branches: - - master - - Development - -jobs: - prettier: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - ref: ${{ github.head_ref }} - - - name: Prettify code - uses: creyD/prettier_action@v3.0 - with: - prettier_options: --write **/*.{java,md} - commit_message: 'feat: prettify code' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}