From 3c07fae35508321bcea6bec4479f47aa6e3d340b Mon Sep 17 00:00:00 2001 From: Brandon Date: Mon, 18 Dec 2023 23:25:08 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Stop=20the=20madness=20(#3168)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/formatting.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/formatting.yml diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml deleted file mode 100644 index 1b7e3ff7db..0000000000 --- a/.github/workflows/formatting.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Formatting - -on: - pull_request: - branches: - - main - -jobs: - format: - name: Formatting - runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - - name: Checkout the project - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - - - name: Run Laravel Pint - uses: aglipanci/laravel-pint-action@1.0.0 - with: - preset: laravel - - - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: 🎨 Run Pint - skip_fetch: true