From 4174a6371cc8f518fe0d32bb30a981f319de2ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Siro=20D=C3=ADaz=20Palaz=C3=B3n?= Date: Fri, 30 Dec 2022 14:26:05 +0100 Subject: [PATCH] removed php-cs-fixer from Actions --- .github/workflows/php-cs-fixer.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/php-cs-fixer.yml diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml deleted file mode 100644 index 5c703ea..0000000 --- a/.github/workflows/php-cs-fixer.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Check & fix styling - -on: [push, pull_request] - -jobs: - php-cs-fixer: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - ref: ${{ github.head_ref }} - - - name: Run PHP CS Fixer - uses: docker://oskarstark/php-cs-fixer-ga - with: - args: --config=.php_cs.dist.php --allow-risky=yes - - - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Fix styling