From 01174bc96a7a09e25660e4b37c10eeaf7425fb97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Che=C5=82miniak?= Date: Tue, 19 Nov 2024 19:56:44 +0100 Subject: [PATCH] chore: remove redundant prettier workflow --- .github/workflows/prettier.yml | 23 ----------------------- 1 file changed, 23 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 a320d90..0000000 --- a/.github/workflows/prettier.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Prettify on Merge - -on: - pull_request_target: - types: - - closed - -jobs: - prettier: - if: ${{ github.event.pull_request.merged == true }} - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - # Ensure the branch being merged is checked out - ref: ${{ github.event.pull_request.head.ref }} - - - name: Prettify code - uses: creyD/prettier_action@v4.3 - with: - prettier_options: --write ./packages/core/**/* ./packages/cli/**/*