diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml deleted file mode 100644 index 73ca5e6..0000000 --- a/.github/workflows/php-cs-fixer.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Check and fix code styling with php-cs-fixer - -on: - pull_request: - push: - -jobs: - style: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - with: - ref: ${{ github.head_ref }} - - - name: Run php-cs-fixer - uses: docker://oskarstark/php-cs-fixer-ga - with: - args: --config=.php-cs-fixer.dist.php --allow-risky=yes - - - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4.10.0 - with: - commit_message: Automatically applied php-cs-fixer changes